body {
    background-image: url(image/space.jpg);
    background-repeat: no-repeat;
    width: 100vh;
}

.quiz-container {

    border-radius: 50px;
    width: 400px;
    margin: auto;
    padding: 50px;
    box-shadow: 0 0 50px rgb(253, 253, 253);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    text-align: center;
    font-size: 35px;
    color: white;
}
/* die fragen  */
.question-container {
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: bold;
    color: white;

}

.options-container {
    display: flex;
    flex-direction: column;
  

}

.option {
    margin: 5px 0;
    padding: 10px;
    font-size: 16px;
    background-color: #cc6a6aea;
    border: 5px solid rgb(224, 60, 15);
    border-radius: 30px;
    cursor: pointer;

}

.option:hover {
    background-color: #e6e6e6;
}
/* für das Ergebniss */
.result-container {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    display: none;
    color: white;
}

.load {
    text-align: center;
    margin-left: 160px;
    font-size: 25px;
    background-color: black;
    color: white;
    border-radius: 30px;
    box-shadow: 0 0 30px rgb(253, 253, 253);
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 13%;
    background-color: #040404b9;
    color: white;
    text-align: center;
    font-size: 20px;
    border-radius: 30px;
    box-shadow: 0 0 30px rgb(253, 253, 253);
}



.correct-answer {
    background-color: #24cd2a; /* Hervorhebungsfarbe für die richtige Antwort */
    color: rgb(10, 9, 9);
}
