
.quiz-div {
    display: flex;
    justify-content:center;
    align-items: center;
    margin: 0;
}
#quiz-container {
 
  
    width: 100%;
    max-width: 1000px;

    background-color: #004f85;
    /* padding: 80px 50px; */
    padding: 20px 20px;
    border-radius: 8px;
    border: 3px double rgb(205, 154, 58);
    border-style:double dashed solid double;
    border-right-style:hidden;
    position: relative; 
    border-right: 3px solid rgb(205, 154, 58); 
    /* padding-right: 20px;  */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom:30px;
}

#question {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}
#options {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.option {
    display: block;
    text-align: center;
    width: 400px;
    padding: 10px;
    background: #e9e9e9;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px 0;
    transition: background 0.3s;
}
.option:hover {
    background-color: #d1d1d1;
}
.option.selected {
    background-color: #4CAF50;
    color: #fff;
    font-weight: bold;
}
#next-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: rgb(205, 154, 58);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}
#next-button:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}
#next-button:enabled {
    opacity: 1;
}
#end-message {
    font-size: 18px;
    color:#F1F1F1;
}
.img-teacher{
    width: 50%;
}
.img-teacher img{
    max-width: 500px;
}





.quiz-title {
    font-size: 1.8rem; 
font-weight: 700;
    color:#fca311;
    text-align: center;
  

    padding: 10px 20px;
    /* background: linear-gradient(135deg, #f2ce06, #ffd903);  */
    /* -webkit-background-clip: text;
    color: transparent;
    display: inline-block; */
}

/* .quiz-title::after {
    content: "✏️"; 
    font-size: 1.5rem;
    color: #f9a826; 
    position: absolute;
    right: -30px;
    top: 10%;
} */

/* .quiz-title::before {
    content: ""; 
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    z-index: -1;
    background-color: #000;
    opacity: 0.2;
    filter: blur(3px);
    border-radius: 5px;
} */

@media screen and (max-width:853px) {
#quiz-container{
    flex-direction: column;
}   
}

@media screen and (max-width:540px) {
.option{
    max-width: 300px;
}

.img-teacher{
    width: 80%;
}
.img-teacher img{
    max-width: 800px;
    margin-bottom: 20px;
}
}
@media screen and (max-width:480px) {
    #quiz-container::after {
        top: 65%; 
        left:-10px;
    }
    .quiz-section{
        padding: 50px 10px;
    }
    .option{
        max-width: 250px;
    }
    #quiz-container{
        padding: 80px 30px;
        max-width: 950px;
    }
    #quiz-container::after {
        top: 75%; 
    }
    .quiz-title {
        font-size: 1.2rem; 
    }
    #question{
        font-size: 14px;
    }

}

@media screen and (max-width:1024px) {
  
    
    }