body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
}

.choices {
    margin: 20px 0;
}

.choice {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    margin: 0 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}

.choice:hover {
    background-color: #0056b3;
}

.result {
    margin: 20px 0;
}

#reset,
#exit {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
}

#reset {
    background-color: #28a745;
    color: white;
}

#reset:hover {
    background-color: #218838;
}

#exit {
    background-color: #dc3545; /* Red color */
    color: white;
}

#exit:hover {
    background-color: #c82333; /* Darker red on hover */
}