.quiz-container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.question {
    margin-bottom: 20px;
    color: red;
    font-weight: bold;
    font-size: 18px;
}
.options {
    margin: 10px 0;
}
.options button {
    display: block;
    margin: 5px 0;
    padding: 10px;
    background: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    text-align: left;
}
.options button:hover {
    background: #0056b3;
}
.options button.selected {
    background: #28a745;
    pointer-events: none;
}
.submit-container {
    text-align: center;
    margin-top: 20px;
}
.submit-btn {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}
.submit-btn:hover {
    background: #218838;
}
.next-btn {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    float: right;
}
.next-btn:hover {
    background: #218838;
}
.result {
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
}
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #f00;
    opacity: 0;
    pointer-events: none;
    animation: confetti-fall 2s forwards;
}
@keyframes confetti-fall {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y)) rotate(360deg);
        opacity: 0;
    }
}
/* Popup style */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: yellow;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: red;
    z-index: 1000;
}
.popup .emoji {
    font-size: 36px;
    margin-bottom: 10px;
}
h2 {
    color: red;
}
h1{
    color: blue;
}
strong{
    color: black;
}
section {
    background: #ffffff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 500px) {
    h1{
        font-size: larger;
    }
    h2{
        font-size: medium;
    }
    p{
        font-size: medium;
    }

}