body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    padding: 20px;
}

/* Main Layout */
.main-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

/* Quiz Section */
.quiz-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 450px;
}

button {
    background-color: #d43e19;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #a55205;
}

img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.options {
    margin-top: 20px;
}

.option-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    background-color: #ada530;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.option-btn:hover {
    background-color: #b9a00e;
}

/* Dropdown menu */
select {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Progress Bar */
progress {
    width: 100%;
    height: 15px;
    margin-top: 20px;
}

/* About Section */
.about-section {
    background: #fff8dc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    text-align: left;
}

.about-section h2 {
    color: #d43e19;
}

/* Animation for correct answer */
.correct {
    animation: correctAnimation 0.5s ease-in-out;
}

@keyframes correctAnimation {
    0% { transform: scale(1); background-color: #ada530; }
    50% { transform: scale(1.1); background-color: #4caf50; }
    100% { transform: scale(1); background-color: #ada530; }
}

/* Animation for incorrect answer */
.incorrect {
    animation: incorrectAnimation 0.5s ease-in-out;
}

@keyframes incorrectAnimation {
    0%, 100% { transform: translateX(0); background-color: #ada530; }
    25% { transform: translateX(-5px); background-color: #d43e19; }
    50% { transform: translateX(5px); background-color: #d43e19; }
    75% { transform: translateX(-5px); background-color: #d43e19; }
}

.about-section p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}