body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
    background: #2c2b2b;
    color: #fff;
}

.container {
    text-align: center;
    padding: 50px 50px;
    border-radius: 20px;
    border: 2px solid white;
    box-shadow: 0 0 30px rgba(250, 243, 243, 0.486);
}

#answer {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

button {
    padding: 12px 28px;
    margin: 0 15px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

#yes {
    background-color: green;
    border: 2px solid white;
    color: white;
}

#no {
    background-color: red;
    border: 2px solid white;
    color: white;
}