:root{
    --timerWidth: 1vw;
}

.question{
    font-family: Poppins;
    font-weight: 700;
    font-size: 3vw;
    text-align: center;
    background-color: rgb(255, 194, 10);
    color: rgb(57, 57, 57);
    padding: 50px 20px 50px 20px;
    margin: 50px auto 50px auto;
    border-radius: 25px;

    user-select: none;
}

.answer{
    font-family: Poppins;
    font-size: 2vw;
    text-align: center;
    background-color: rgb(50, 98, 130);
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 25rem;

    user-select: none;

    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover)
{
    .answer:hover{
        font-size: 3vw;
        /* background-color: rgb(95, 176, 230);
        color: rgb(50, 50, 50); */
        cursor: pointer;
    }
}


.questionHolder{
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

.result{
    font-family: Poppins;
    font-size: 2.5vw;
    font-weight: 600;
    text-transform: uppercase;
    margin: 30px auto;
    width: 60%;
    text-align: center;

    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.timer{
    width: calc(var(--timerWidth));
    height: 10px;
    border-radius: 5px;
    margin-top: 50px;
    background-color: red;
}