body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: rgb(168, 159, 159);
}
.container {
    max-width: 600px;
    margin: 0 auto;
    background: rgb(209, 202, 202);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
h1 {
    text-align: center;
    font-size: 35px;
    color: #333;
}
.question {
    margin-bottom:20px;
}
.question p {
    font-weight: bold;
}
.question input {
    margin-right: 10px;
}
.submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: rgb(108, 81, 49);
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.reset-btn{
    margin-bottom: 10px;
}

.submit-btn:hover {
    background: rgb(155, 108, 51);
}
.result {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: green;
}