#quiz{
    font-family:  "Poppins", sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.quiz-container {
    width: 90%;
    max-width: 600px;
    background-color: black;
    padding: 20px;
    border-radius: 15px;
    border: solid white 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-left: 28%;
    margin-top: 5%;
    margin-bottom: 15%;
}

#question-text {
    font-size: 1.5em;
    min-height: 100px; /* Asegura un espacio para la pregunta o mensaje */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: white;
}

#initial-message {
    font-size: 1.2em;
    color: white;
}

#initial-message img {
    max-width: 150px;
    margin-top: 10px;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.option-btn {
    width: 100%;
    padding: 15px;
    font-size: 1em;
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.option-btn:hover {
    background-color: #e9e9e9;
}

.option-btn.correct {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.option-btn.incorrect {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

#start-button {
    padding: 12px 25px;
    font-size: 1.1em;
    background-color: rgb(255, 255, 255);
    color: black;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#start-button:hover {
    background-color: #abb3bb;
}


@media (max-width: 575px){
    .quiz-container {
    width: 90%;
    max-width: 600px;
    background-color: rgb(255, 255, 100);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-left: 5%;
    margin-top: 5%;
    margin-bottom: 45%;
}
}