body {
    font-family: Arial, sans-serif;
    background-color: #dff6ff;
    text-align: center;
    padding: 40px;
}

h1 {
    color: #1b4332;
    margin-bottom: 30px;
}

#question {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #222;
}

#answer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
    margin: 0 auto;
}

button {
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    background-color: #40916c;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #2d6a4f;
}

#result {
    margin-top: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}