* {
    -webkit-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    -webkit-transition: -webkit-filter .25s ease;
    transition: -webkit-filter .25s ease;
    transition: filter .25s ease;
    transition: filter .25s ease, -webkit-filter .25s ease; }


html {
    font-size: 16px;
    width: 100vw;
    height: 100vh;
}


body {
    font-family: serif;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


header h1,
header h2,
main .wrapperStatus .congratsSection h2,
main .wrapperStatus .congratsSection h3,
main .wrapperStatus .congratsSection h4 {
    display: inline-block;
    padding: .5rem 1.2rem;
    border-radius: 1rem;
    font-weight: 900;
    font-style: italic;
    background: rgba(255,0,0,.9);
    color: #fff;
    text-shadow: 0 0 5px rgba(0,0,0,.3);
}

header h1 {
    margin: 1rem 0 0 0;
    font-size: 4rem;
}

header h2 {
    margin: .5rem 0 0 0;
    font-size: 2rem;
}

main .wrapperStatus .congratsSection {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

main .wrapperStatus .congratsSection h2 {
    font-size: 3.5rem;
}

main .wrapperStatus .congratsSection h3 {
    font-size: 2rem;
    margin: 0.5rem 0 -1rem 0;
}

main .wrapperStatus .congratsSection h4 {
    font-size: 7rem;
    margin: 1.5rem 1.5rem;
    padding: 1rem 4rem;
    background: rgba(0,0,0,.8);
    text-transform: uppercase;
}

main .wrapperTime {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

main .wrapperRow {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

main .wrapperTime .timeSection {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 1rem 0 0 0;
}

main .wrapperTime .timeSection .itemTime {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 8rem;
    height: 8rem;
    margin: .5rem;
    padding: 0 1rem;
    border-radius: 1rem;
    background: rgba(0,0,0,.8);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7021183473389356) 25%, rgba(0,0,0,1) 50%, rgba(0,0,0,0.6993172268907564) 75%, rgba(0,0,0,1) 100%);
    color: #fff;
}

main .wrapperTime .timeSection .itemTime.lowDesc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 8rem;
    height: 2rem;
    margin: .3rem .5rem 0;
    border-radius: .75rem;
    background: rgba(0,0,0,.8);
    color: #fff;
}

main .wrapperTime .timeSection .itemTime span {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
}

main .wrapperTime .timeSection .itemTime .clockSplitter {
    position: absolute;
    top: 4.75rem;
    left: 0;
    min-width: 10rem;
    width: 100%;
    min-height: .25rem;
    background: rgba(0,0,0,.9); 
}

main .wrapperStatus .congratsSection h5 {
    display: inline-block;
    margin: -1.5rem 0 0 0;
    padding: .5rem;
    border-radius: .5rem;
    background: rgba(0,0,0,.8);
    color: #fff;
    font-style: italic;
}

@media only screen and (min-width: 320px) {
    html {
        font-size: 7px;
    }
    header {
        margin-top: 15vh;
    }
}

@media only screen and (min-width: 400px) {
    html {
        font-size: 8px;
    }
    header {
        margin-top: 10vh;
    }
}

@media only screen and (min-width: 767px) {
    html {
        font-size: 14px;
    }
    header {
        margin-top: 5vh;
    }
}


    
