html, body {
    height: 100%; /* Stellt sicher, dass der Body den gesamten Viewport ausfüllt */
    margin: 0; /* Entfernt den Standardabstand des Browsers */
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Der Body füllt den gesamten Viewport aus */
    background-color: #f4f4f4;
    text-align: center;
    overflow: hidden; /* Verhindert das Scrollen */
}

.quiz-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
    height: auto;
    min-height: 450px; /* Ermöglicht das Scrollen innerhalb des Containers, wenn der Inhalt zu groß ist */
}

.instructions {
    font-size: 16px; /* Einheitliche Schriftgröße */
    margin-bottom: 20px;
}

.instructions strong {
    font-size: 18px; /* Größere Schrift für "Anleitung:" */
}

.btn-container {
    display: flex;
    flex-direction: column;
}

/* Allgemeine Button-Stile */
button {
    margin: 5px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: transform 0.2s, background-color 0.2s;
}

/* Start-Button */
button#start-button {
    background-color: #007BFF;
    color: white;
    width: 100%; /* Macht den Button so breit wie sein Container */
    max-width: 300px; /* Optional: Begrenzung der maximalen Breite */
}

/* Korrekte Antwort */
button.correct {
    background-color: green;
    color: white;
}

/* Falsche Antwort */
button.wrong {
    background-color: red;
    color: white;
}

/* Hover-Effekte für alle Buttons */
button:hover {
    transform: scale(1.05);
    filter: brightness(90%);
}

/* Versteckte Elemente */
.hidden {
    display: none;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.evaluation-title {
    font-size: 18px;
    font-weight: bold;
}

em {
    font-style: italic;
    font-weight: normal;
}

/* Wasserzeichen-Styling */
#watermark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #555; /* Hellgrau mit Transparenz */
    margin-top: 60px; /* Platz für das Wasserzeichen */
}

.watermark-image {
    width: auto;
    height: 50px; /* Höhe des Bildes */
    margin-top: 5px; /* Weniger Abstand zum Text */
}
