/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background: #282c34;
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container Styling */
.quiz-container {
    text-align: center;
    width: 80%;
    max-width: 600px;
    background: #3b3f47;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.quiz-title {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #61dafb;
}

.quiz-box {
    padding: 20px;
}

.question-container {
    margin-bottom: 20px;
}

.question-text {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.answer-buttons {
    display: flex;
    flex-direction: column;
}

.answer-buttons button {
    background: #61dafb;
    border: none;
    border-radius: 5px;
    color: #282c34;
    font-size: 1em;
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.answer-buttons button:hover {
    background: #50b7e0;
}

.next-button {
    background: #61dafb;
    border: none;
    border-radius: 5px;
    color: #282c34;
    font-size: 1em;
    padding: 10px;
    cursor: pointer;
    display: none;
}

.footer {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-text {
    font-size: 1em;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 600px) {
    .quiz-container {
        width: 95%;
    }
}
