body {
    background-color: pink;
    margin: 0; 
    height: 100vh; 
    display: flex; 
    align-items: center;
    justify-content: center; 
}

.question {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
}

.question h1 {
    color: palevioletred;
}

.question img {
    margin-bottom: 20px; 
}

.buttons {
    display: flex; 
    gap: 30px; 
}

.buttons button {
    background-color: peachpuff;
    font-size: 30px;
    color: palevioletred;
    border-radius: 15px;
    padding: 15px 50px;
}

#no {
    white-space: nowrap;
}

