.quiz-container {
    width: 100%;
    margin: 50px auto;
    background: #94A2B2;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e7c275;
}

.quiz-container h1 {
    font-size: 24px;
    color: #e7c275;
    font-weight: 700;
}

.quiz-container .question h2 {
    font-weight: 700;
    font-size: 21px;
    color: #fff;
}

.quiz-container p{
    color: #fff;
}

.quiz-container .question,
.quiz-container .quiz-section {
    display: none;
}

.quiz-container .question.active,
.quiz-container .quiz-section.active {
    display: block;
}

.quiz-container .options {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.quiz-container .options .option span {
    font-weight: 700;
}

.quiz-container button.option {
    display: block;
}

.quiz-section .question button.next {
    background: #ccc;
}

.quiz-section .question button.next.enabled {
    background: #e7c275;
}

.finish-quiz,
.quiz-container button {
    display: flex;
    align-items: center;
    justify-self: center;
    background: #fff;
    color: #000000;
    border: none;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.finish-quiz,
.quiz-container button.start-quiz,
.quiz-container button.selected {
    background: #e7c275;
    color: #000000 !important;
}

.finish-quiz{
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

.quiz-container button.prev {
    background: #e7c275;
    color: #000000;
}
.finish-quiz,
.options button.next {
    background: #ccc;
}
.finish-quiz.enabled,
.options button.next.enabled {
    background: #e7c275;
}

.quiz-container img {
    width: 100%;
    border-radius: 10px;
    max-width: 300px;
    margin: 20px auto;
}

.buttons-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.disabled-option {
  opacity: 0.5;
  cursor: not-allowed;
}
@media(max-width:767px) {
    .quiz-container h1 {
        font-size: 21px;
    }
}
