.question-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.question-image img {
    max-width: 90%;
    height: auto;
    max-height: 450px;
    border-radius: 10px;
    margin: 10px 0;
    padding: 0;
}

.answers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 40vw;
}

.answers-grid label {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.answers-grid label:hover {
    background: #e0e0e0;
}

.answers-grid input {
    margin-right: 10px;
}

.correct {
    background-color: #d6f0dc !important;
    border: 2px solid #155724;
}

.incorrect {
    background-color: #f5dee0 !important;
    border: 2px solid #721c24;
}

button {
    padding: 10px 0px;
    margin: 0 !important;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    transition: background 0.3s;
}

button:hover {
    background: #0056b3;
}

@media (max-width: 600px) {
    .answers-grid {
        grid-template-columns: 1fr;
        width: 90vw;
    }

    .question-image img {
        max-width: 90vw;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.illustration{
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration h1{
    font-size: 108px;
    margin: 0;
    padding: 15px;
    border-bottom: 3px solid #007BFF;
}

.hide {
    display: none !important;
}