*{ 
    margin: 0px; 
    padding: 0px; 
    box-sizing: border-box; 
    outline:none; 
    font-family: 'Roboto',sans-serif; 
} 
 
body{ 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    background-color:rgb(249, 252, 84); 
    overflow-x: hidden;  
}/*rgb(249, 252, 84)#f7cb54*/ 
img{ 
    height: 300px;   
} 
.cabecalho { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 350px; 
    flex-direction: column; 
    font-size: 2.0em; 
} 
/*#FCBB11*/ 
button{ 
    background-color: #FCBB11; 
    border-radius: 6px; 
    height: 50px; 
    border: 2px solid black; 
    padding: 8px 40px; 
    cursor: pointer; 
    color:black; 
    font-weight: bold; 
} 
 
button:hover { 
transition: 0.5s; 
background:#207000c4; 
color: white; 
} 
 
.botao{ 
    text-align: center; 
    display: flex; 
    height: 150px; 
    width: 80%; 
    flex-direction: row-reverse; 
    justify-content: space-between; 
} 
 
#botaostart:hover{ 
    background-color: rgba(11, 11, 241, 0.767); 
}