section{
    height:100vh;
    display:flex;
    flex-direction: column;
/*    justify-content: center;*/
    align-items: center;
    background-color:#37B6F6; 
}

section h1{
    text-transform: capitalize;
    font-size: 2rem;
    margin: 0.6em;
/*    padding-bottom: 1em;*/
    color:white;
/*    text-shadow: 10px 10px 20px white;*/
/*
    animation: zooms 1s linear infinite;
    animation-direction: alternate
*/
}


@keyframes zooms{
    from{ transform: translateX(-1em)}
    to{ transform: translateX(1em)}
}


#resultBox{
    color:white;
    font-size: 1.5em;
    margin:0;
}
.centerDiv{
    max-width: 360px;
    max-height: 360px;
    background-color:#F9E104;
    padding:20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.insertBox{
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: center;    
}

#v1, #v2{
    text-align: center;
    width:2em;
    padding:0.5em;
    font-size: 2em;
    border-radius: 20px;
}

.box1 p{
    font-size: 3em;
    margin:0px 0.5em 0px 0.6em;
}

.answerBox #answer{
    text-align: center;
    width:5em;
    padding:0.5em 1em;
    font-size: 1.5em;
    margin-top: 1em;
    border-radius: 5px;
}

.sendAnswer button{
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 1em;
    color: white;
    background-color: #079992;
    border-radius: 15px;
    width:150px;
    font-size: 1.3em;
}