/* body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f4f4f4;
} */

.quiz-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease;
		width: 80%;
}

.quiz-container:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

h1 {
    color: #333;
}

button {
    background-color: #4caf50;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

#options-container {
    margin-top: 20px;
}

.option {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.option:hover {
    background-color: #ccc;
}

.option.selected {
    outline: 2px solid green;
    transform: scale(1.05);
    background-color: #ddd;
}

#notification {
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}

.correct {
	text-align: center;
    background-color: #4caf50;
    color: #fff;
}

.incorrect {
		text-align: center;
    background-color: #f44336;
    color: #fff;
}

.quiz-completed {
    background-color: #2196f3;
    color: #fff;
}
