*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: rgb(3, 2, 0);
    padding: 50px;
    height: 500px ;
    justify-content: center;
    align-items: center;

    

}


section{
    align-items: center;
    background-color:rgba(55, 61, 65, 0.603) ;
    border-radius: 15px;
    padding: 60px;
    width: 800px;
    margin: auto;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.603);
    height: auto;
    
    
}

footer, header{
color: rgb(189, 238, 183);
text-align: center;
}

header{
    font: normal 35px fonteTitulo;
}

footer{
    font-style: italic;
    padding-top: 100px;
    
}

button{
position: relative;
width: 200px;
height: 35px;
left: 250px;
margin-top: 30px;
font: normal 18px Arial;
color: rgb(189, 238, 183);
bottom: 5px;
transition: 0.5s ease-in-out;
background-color: rgba(55, 61, 65, 0.603);

}

form{
    
    width: 100%;
    max-width: 250px;
 }

 /* div{
    font: bold 22px Arial;
    color: olivedrab;
} */

div.question{
    font: bold 22px Arial;
    color: olivedrab;
    margin-top: 30px;
    
}

div.single-input{
    position: relative;
    width: 200px;
    margin: 30px 0;
    left: 250px;
    
}

div.single-input label{
    
    font: normal 18px Arial;
    color: rgb(189, 238, 183);
    position: absolute;
    left: 60px;
    bottom: 5px;
    cursor: text;
    transition: 0.5s ease-in-out;
}

div.single-input .input{
    width:100%;
    padding: 5px;
    background-color: rgba(55, 61, 65, 0);
    border: 0;
    border-bottom: 2px solid black;
    outline: 0;
    color:rgb(189, 238, 183);
    font-size: 18px;
}



div.single-input .input:focus ~ label, div.single-input .input:valid ~ label{
    transform: translate(-50px, -30px);
    font-size: 12px;
    color: rgb(189, 238, 183);
}

@font-face {
    font-family: fonteTitulo;
    src: url(Fontes/rodaja/Woodcutter_Rodaja.ttf);
}

input[type=number]::-webkit-inner-spin-button,
    input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }