body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.question-container {
    text-align: center;
    max-width: 600px;
    margin: auto;
}

h1 {
    color:cadetblue;
}

button {
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
}

.options {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.option {
    margin: 5px;
    padding: 5px;
    cursor: pointer;
    border: 1px solid cadetblue;
    border-radius: 5px;
}

.option:hover {
    background-color: cadetblue;
    color: #fff;
}

.selected {
    background-color: cadetblue;
    color: #fff;
}
