body {
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgb(61, 2, 68) 100%, rgb(68, 6, 82) 100%);
    color: #fff;
    font-family: Arial, sans-serif;
}

header {
    padding: 20px;
    text-align: center;
}

/* Navigation Bar */
.navbar {
    overflow: hidden;
    border: solid 2px rgb(255, 249, 249);
}

.navbar a {
    float: left;
    font-size: 35px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 35px;
    font-weight: bold;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    padding: 14px 16px;
    background-color: inherit;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
    color: rgb(100, 100, 100);
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    background-color: black;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    color: rgb(100, 100, 100);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Zusammenfassung */
.main-container-title {
    font-size: 35px;
    text-align: center;
}

.main-container-text {
    font-size: 30px;
    margin: auto;
    padding: 40px;
    width: 40%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border: 2px solid rgb(255, 255, 255);
}


/* About */

.about-container {
    text-align: left;
    margin: 300px auto;
}

.about-image-container {
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
}

.about-image {
    width: 180px;
    height: 350px;
    object-fit: cover;
    margin: auto;
    padding: 15px;
    border-radius: 20px;
}

.about-text-container {
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
}

.about-text {
    margin: 20px 0;
    text-align: center;
    font-size: 20px;
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: auto;
    padding: 15px;
}

/* Quiz */
.question {
    margin-bottom: 20px;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.correct {
    background: rgba(0, 255, 0, 0.3) !important;
}

.incorrect {
    background: rgba(255, 0, 0, 0.3) !important;
}

#submit-btn {
    background: linear-gradient(90deg, #6b48ff, #d9a7ff);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
}


#note {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

.quiz-header {
    font-size: 35px;
    text-align: center;
}

.quiz-container {
    font-size: 24px;
    margin: auto;
    padding: 40px;
    width: 40%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}




/* Aufzug */

.aufzug-header {
    font-size: 35px;
    text-align: center;
}

.aufzug-text {
    font-size: 30px;
    margin: auto;
    padding: 40px;
    width: 40%;
    text-align: center;
    border: 2px solid rgb(255, 255, 255);
}

h3 {
    margin: 20px;
    text-align: center;
}