html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #3f68bb;

    font-family: Inter, 'Arial', 'Roboto';
}

#title_h2{
    text-align: center;
}

#container_beginning{
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}



#instructions{
    display: flex;
    flex-direction: column;
    align-items: center;

}



#start_button{
    width: 200px;
    height: 50px;
    border-radius: 15px;
    border: none;
    background-color: rgb(158, 28, 28);
    font-size: 1.3rem;
}

#start_button:active{
    transform: scale(0.9);
}


#instructions{
    margin-left: 20px;
    margin-right: 20px;
    align-items: start;
}
#instructions h3{
    align-self: center;
}







/*! container_test */


#container_test{
    margin-top: 70px;
    display: none;
    flex-direction: column;
    gap: 70px;
    padding-left: 20px;
    padding-right: 20px;
}

#arrows_div{
    display: flex;
    justify-content: center;
    gap: 100px;

}

#arrows_div > *{
    font-size: 3rem;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

#arrows_div > *:hover{
    background-color: #597bbe;
}


#range_answer_div{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}


#range_answer{
    width: 300px;
}


#question_div{
    display: flex;
    flex-direction: column;
    align-items: center;
}




#nolans_div img{
    width: 100%;
    height: 100%;
}


#nolansContainer{
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}


#nolans_div{
    border: 1px ridge black;
    position: relative;
    width: 500px;
    height: 500px;

}


@media(max-width:540px){
    #nolans_div{
        width: 450px;
        height: 450px;
    }
}

@media(max-width:470px){
    #nolans_div{
        width: 420px;
        height: 420px;
    }

}


@media(max-width:440px){
    #nolans_div{
        width: 350px;
        height: 350px;
    }

}