Multiple Choice Quiz
/* CSS styles for the quiz */
body {
font-size: 16px;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.question-container {
margin-bottom: 30px;
padding: 20px;
border: 1px solid #ccc;
border-radius: 10px;
}
.question-container h2 {
font-size: 20px;
margin-bottom: 10px;
}
#options ul {
list-style-type: none;
padding: 0;
}
#options ul li {
margin-bottom: 15px;
font-size: 18px;
}
/* Styling for buttons */
button {
width: 25%;
height: 45px;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
...