body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #f8e7a2;
}

h1 {
    color: #ff5733;
}

#game-container {
    background: #fff;
    width: 400px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#question {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

#choices {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.choice {
    font-size: 24px;
    padding: 10px 20px;
    background: lightblue;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.choice:hover {
    background: #87CEEB;
}
