body {
    font-family: Arial, sans-serif;
    background-color: #aae0fc;
    text-align: center;
    margin: 0;
    padding: 0;
}

.quiz-container {
    background-color: #fff;
    border-radius: 10px;
    width: 60%;
    margin: 100px auto;
    padding: 30px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 20px;
}

.options {
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px 0;
}

.buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}

button#finish {
    background-color: #f44336;
}

button#finish:hover {
    background-color: #d32f2f;
}

button#restart {
    background-color: #2196F3;
}

button#restart:hover {
    background-color: #1976D2;
}
h1 {
    font-family: 'Arial', sans-serif; /* Font family */
    font-size: 3em; /* Font size */
    color: #0b0c0c; /* Text color */
    text-align: center; /* Center the text */
    text-transform: uppercase; /* Make the text uppercase */
    letter-spacing: 2px; /* Add space between letters */
    margin: 20px 0; /* Add margin above and below */
    padding: 10px; /* Add padding */
    background-color: #8ef1e1; /* Background color */
    border: 2px solid #97d2e6; /* Border color */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    transition: transform 0.3s; /* Transition effect */
}

h1:hover {
    transform: scale(1.05); /* Slightly scale up on hover */
}
