@font-face {
    font-family: 'Noodle';
    src: url('fonts/big_noodle_titling.ttf');
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.tabs {
    background-color: rgba(0, 0, 0, 0);
}

.tabs .tab a{
    color: #64b5f6;
} /*Black color to the text*/

.tabs .tab a:hover {
    color:#42a5f5;
} /*Text color on hover*/

.tabs .tab a.active {
    color: #42a5f5;
} /*Background and text color when a tab is active*/

.tabs .indicator {
    background-color: #64b5f6 ;
} /*Color of underline*/

.tabs .tab a:focus, .tabs .tab a:focus.active {
    background-color: rgba(100, 181, 246, 0.1);
}

.countdown {
    font-family: Noodle, serif;
    font-size: 5rem;
    color: #21b4ff;
    text-align: center;
    vertical-align: middle;
    text-shadow: #000 0 0 1px,   #000 0 0 1px,   #000 0 0 1px,
    #000 0 0 1px;
}

.s-main {

}

.s-main--image {
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    color: white;
}

.frame-layout-1 {
    background-color: white;
    color: rgba(0,0,0,0.87);
    padding: 30px 0;
}

.frame-layout-2 {
    padding: 180px 0;
}

.text-center { text-align: center }