@font-face{
    font-family: Anton;
    src: url("/Fonts/anton.ttf") format("truetype");
}

.timerPageContainer{
    width: 100%;
    height: 100%;
    background: url("/Images/timerMainBackground.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #FED401;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.timer{
    background: url("/Images/timerBackground.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 85vw;
    height: 48vw;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Anton;
    font-size: 40vw;
    color: black;
}
.pauseResetBtnsContainer{
    width: 85vw;
    display: none;
    justify-content: space-between;
}
.btnContainer{
    margin-top: 5%;
    width: 85vw;
    display: flex;
    justify-content: center;
}

.btnContainer img{
    width: 47%;
}

#timer{
    margin-bottom: 7%;
}

@media screen and (min-width: 768px) {
    #mainContainer{
        background-color: white;
    }
    .timerPageContainer{
        width: 70%;
        margin: auto;
    }

    .timer{
        width: 70vw;
        background-size: 100%;
        font-size: 35vw
    }

    .btnContainer{
        margin-top: 0;
        width: 70vw;
    }
}