body {
    font-family: 'VT323', monospace;
    color: #ffffff;
    background-color: #8B6244; /* Base dirt color */
    background-image: 
        linear-gradient(45deg, #75522D 25%, transparent 25%),
        linear-gradient(-45deg, #75522D 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #75522D 75%),
        linear-gradient(-45deg, transparent 75%, #75522D 75%);
    background-size: 32px 32px;
    background-position: 0 0, 0 16px, 16px -16px, -16px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-size: 18px; /* Increased base font size */
}

.container {
    border: 3px solid #545454;
    box-shadow: inset 0 0 0 3px #000000, 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 0;
    max-width: 48rem; /* Added max-width for better responsiveness */
    width: 90%; /* Allow some flexibility for smaller screens */
    position: relative; /* Add this line */
}

h1 {
    text-shadow: 2px 2px #000000;
    font-size: 2.5rem; /* Increased heading size */
    margin-right: 1rem; /* Add some space between the title and the dropdown */
}

#question {
    font-size: 1.5rem; /* Increased question font size */
    margin-bottom: 20px; /* Add margin to the bottom of the question */
}

select, button, .option-button {
    font-family: 'VT323', monospace;
    border: 2px solid #545454;
    color: #ffffff;
    text-shadow: 1px 1px #000000;
    cursor: pointer;
    font-size: 1.2rem; /* Increased font size for interactive elements */
}

select:hover, button:hover {
    background-color: #a8a8a8;
}

.option-button {
    border: 2px solid #424242;
    padding: 10px 15px;
    margin-bottom: 0; /* Remove this line */
    width: 100%;
    text-align: left;
}

.option-button:hover {
    background-color: #6e6e6e;
}

/* Add this to ensure proper spacing for the last button */
.option-button:last-child {
    margin-bottom: 0;
}

#score {
    background-color: #4a4a4a;
    border: 2px solid #363636;
    padding: 10px;
    margin-top: 20px;
    font-size: 1.3rem; /* Increased score font size */
}

.hidden {
    display: none;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

.w-192 {
    width: 48rem;
}

/* Add this media query at the end of the file */
@media screen and (max-width: 600px) {
    .container {
        margin-left: 5px;
        margin-right: 5px;
    }
}

/* Update this rule for the Show Hint button */
#show-hint-button, .show-hint-button {
    margin-top: 15px;
    margin-bottom: 15px;
}

#quiz-selector {
    font-size: 0.9rem;
    padding: 5px;
    width: auto;
    flex-shrink: 0; /* Prevent the dropdown from shrinking */
}

/* Add this new class */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 10px; /* This creates equal spacing between buttons */
}

/* Add this media query for responsiveness */
@media screen and (max-width: 600px) {
    .container > div:first-child {
        flex-direction: column;
        align-items: flex-start;
    }

    h1 {
        margin-bottom: 0.5rem;
    }

    #quiz-selector {
        width: 100%;
    }
}
