:root {
    --smaller: 3;
    color: white;
    background: black;
    font-family: "Acme", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    padding: 0 100px;
    justify-content: flex-start;
    margin: 10vh 0;
}

li {
    display: inline-block;
    font-size: 2em;
    list-style-type: none;
    padding: 1em;
    text-transform: uppercase;
}

li span {
    display: block;
    font-size: 4.5rem;
    text-align: center;
}


.emoji span {
    font-size: 4rem;
    padding: 0 .5rem;
}



.countdown-container {
    display: flex;
}

.flip {
    transform: scaleX(-1);
}

.logo {
    width: 250px;
}
.text-container{
    text-align: center;
}
.gif-container{
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.gif{
    height: 600px
}
#content{
    margin-top: 10vh;
    display: none;
    height: 30vh;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
#refresh{
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #FFC90000;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    font-size: 30px;
    line-height: 1;
    padding: 24px 48px;
    font-family: "Acme", sans-serif;
}
#refresh:hover{
    color: #000000;
    background-color: #FFC900;
    border-color: #FFC900;

}
@media all and (max-width: 992px) {
    h1 {
        font-size: calc(1.5rem * var(--smaller));
    }
    p{
        font-size: calc(1rem * var(--smaller));
    }
    li {
        font-size: calc(1rem * var(--smaller));
    }

    li span {
        font-size: calc(3.375rem * var(--smaller));
    }
    #refresh{
        font-size: 100px;
        line-height: 1;
        padding: 24px 48px;
    }
    .container{
        padding: 0;
    }
    .p{
        font-size: calc(3.375rem * var(--smaller));
    }
    .gif{

        height: 500px
    }
}
