* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Montserrat", sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
    min-height: 700px;
}
.quiz-container {
    color: #161616;
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin: 25px auto;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.intro-wrapper,
.footer-wrapper{
    margin: 20px auto;
}
.quiz-container h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}
.quiz-container p {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}
button {
    background-color: #D03833;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 700;
    width: fit-content;
    margin: 0 auto;
}
button:hover {
    background-color: #B2231F;
}
.question {
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.4rem;
}
.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}
.option {
    background: #eee;
    border-radius: 6px;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.15rem;
}
.option.correct {
    background-color: #D4EDDA;
    color: #155724;
}
.option.incorrect {
    background-color: #F8D7DA;
    color: #721C24;
}
.hidden {
    display: none;
}
.error-msg {
    color: #D03833;
}
.success-msg {
    color: #178339;
}
@media (max-width: 1024px) {
    .quiz-container {
        padding: 1rem;
    }
    .option {
        font-size: 0.95rem;
    }
}