* {
    box-sizing: border-box;
}

body {
    background-image: url(wallpaper.jpg);
    background-repeat: no-repeat;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

#quiz-container {
    max-width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: flex-end;
    margin-top: 10px;
}

#button-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 300px;
    margin-top: 20px;
}

#question {
    font-size: 56px;
    margin-bottom: 200px;
    height: auto;
    justify-content: center;
    color: white;
}

#options {
    display: flex;
    flex-direction: row;
    gap: 20px; /* Abstand zwischen den Buttons */
    justify-content: center; /* Zentriert die Buttons */
    width: 100%; /* Nutzt die gesamte verfügbare Breite */
    margin-bottom: 150px;
}

.option {
    cursor: pointer;
    padding: 10px;
    background-color: #3498db86;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    width: 20%; /* Setzt die Breite auf 20% der verfügbaren Breite */
    height: 300px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.correct {
    background-color: #2ecc71;
}

.quiz-heading {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    color: #ffd700;
    margin-bottom: 20px;
}

button.start-button {
    margin-top: 5px;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
/* Timer oben links */
#timer-container {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 18px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

/* Frage-Nummer oben rechts */
#question-status-container {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

