body {
    font-family: 'Georgia', serif;
    background: #2c1d0d; /* Výchozí barva pozadí */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; /* Zajistí, že se obrázek přizpůsobí */
    background-attachment: fixed; /* Zabrání rolování obrázku */
    color: #f4e7c5;
    text-align: center;
    padding: 20px;
}

#game-container {
    max-width: 650px;
    margin: auto;
    background: rgba(34, 17, 0, 0.85);
    padding: 20px;
    border: 3px solid #6d4c41;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1 {
    font-family: 'Georgia', serif; /* Odstraněn neexistující "Elvish" */
    font-size: 32px;
    color: #d4af37;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

pre {
    font-family: "Courier New", monospace;
    color: #d4af37;
    font-size: 14px;
}

button {
    display: block;
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    background: #6d4c41;
    color: #f4e7c5;
    border: 2px solid #d4af37;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background: #8b5e3b;
    border-color: #f4e7c5;
    transform: scale(1.05);
}

.correct {
    background-color: green !important;
    color: white !important;
}

.wrong {
    background-color: red !important;
    color: white !important;
}

#question {
    font-size: 22px;
    font-weight: bold;
    color: #f4e7c5;
    padding: 15px;
    min-height: 100px;
    border-bottom: 2px solid #d4af37;
}
