*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;

}

body, html{
    margin: 0;
    padding: 0;
    height: 100%;
    overflow:hidden;
    font-family: Arial, Helvetica, sans-serif;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   
}

.botoes{
    display:flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
button{
    font-size: 1.5em;
    margin: 10px;
    padding: 10px 20px;
    cursor:pointer;
    border: 2px solid #333;
    border-radius: 15px;
    background-color:cornflowerblue;
    transition: background-color 0.3s, color 0.3s;

}

button:hover{
    background-color:rgb(35, 78, 134);
    color: white;
}
