body{
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: burlywood;
}

.container{
    max-width: 600px;
    margin: 0 auto;
    background: antiquewhite;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1{
    text-align: center;
    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-color: orange;
    color: white;
    font-size: 18px;
    border-radius: 20px;
    cursor: pointer;
    border: none;
}

.submit-btn:hover{
    background-color: rgb(228, 195, 133);
}

.result{
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: green;
}