body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}
.container {
    max-width: 500px;
    margin: 50px auto;
    text-align: center;
}
.quiz-title {
    margin-top: 0;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}
.quiz-question {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
.quiz-progress {
    font-size: 18px;
    color: #666;
}
.quiz-form {
    margin-top: 20px;
}
.quiz-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.quiz-button {
    width: 150px;
    height: 50px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid #007bff;
    color: #007bff;
    background-color: transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.quiz-button:hover {
    background-color: #007bff;
    color: #fff;
}
.quiz-response {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
.quiz-logo {
    margin-top: 20px;
    width: 100px;
    height: 100px;
    background-color: #0c94ca;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}