*{
display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza tudo o que estiver no body */
    text-align: center;
    background-color: darkgrey;
}
.div{
    justify-items:center ;
}
.resposta{
   width: 600px;
   height: auto;
}
.liresposta{
    width: 600px;
}
.titulo{
    font-size: 25px;

}
button {
    width: auto; /* Ou 600px se quiser que ocupem a linha toda */
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    background-color: black;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background-color: rgb(107, 107, 107); /* Muda de cor ao passar o mouse */
}