body { | |
font-family: Arial, sans-serif; | |
margin: 0; | |
padding: 0; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
background-color: #f0f0f0; | |
} | |
h1 { | |
text-align: center; | |
} | |
form { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
} | |
#quiz-container { | |
text-align: center; | |
} | |
#options { | |
margin-top: 20px; | |
} | |
button { | |
margin: 10px; | |
padding: 10px 20px; | |
font-size: 16px; | |
} | |