@font-face{
    font-family: Pintaninapro-Regular;
    src: url("/Fonts/Pintaninapro-Regular.otf") format("opentype");
}
.timerPageContainer{
    width: 100%;
    height: 100%;
    background: url("/Images/timerMainBackground.svg");
    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: 45vw;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Pintaninapro-Regular;
    font-size: 50vw;
    color: white;
}
.pauseResetBtnsContainer{
    width: 85vw;
    display: none;
    justify-content: space-between;
}
.btnContainer{
    margin-top: 5%;
    width: 85vw;
    display: flex;
    justify-content: center;
}

.btnContainer img{
    width: 47%;
}

@media screen and (min-width: 768px) {
    #mainContainer{
        background-color: #FED401;
    }
    .timerPageContainer{
        width: 70%;
        margin: auto;
    }

    .timer{
        width: 70vw;
    }

    .btnContainer{
        width: 70vw;
    }
}

