* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f4fc; /* Zartes Rosa für den Hintergrund */
    color: #333;
    line-height: 1.6;
}

header {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #6a0572, #d16ba5); /* Übergang von Purpur zu Rosa */
    color: #fff;
    padding: 20px;
    position: relative;

}
.header-text {
    display: flex; /* Flexbox aktivieren */
    flex-direction: column; /* Erzwingt vertikale Ausrichtung */
    align-items: center; /* Zentriert den Text horizontal */
    justify-content: center; /* Zentriert den Text vertikal, wenn nötig */
    text-align: center; /* Text innerhalb jedes Elements zentrieren */
    margin: auto; /* Entfernt das ungültige center-Margin */
}


.menu-logo {
    position: absolute;
    left: 20px;

}

.round-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    top: -20px;
    left: -20px;
}

header h1 {
    margin-left: 140px; /* Platz für das Bild schaffen */
    font-size: 1.8em;
    color: #fff;
}

header p {
    margin-left: 140px; /* Angleich an die Überschrift */
    font-size: 1.1em;
    color: #eee;
}

nav ul {
    display: flex;
    justify-content: center;
    background-color: #ae73b9; /* Helles Purpur passend zum Bild */
    padding: 10px;
    list-style: none;
    margin: 0; /* Verhindert Löcher durch Margin */

}

nav ul li {
    margin: 0 15px;
    background-color: #ae73b9;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

main {
    margin: 20px auto;
    max-width: 800px;
}

section {
    padding: 20px;
    background: #fff; /* Neutraler Hintergrund für Lesbarkeit */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

h1, h2 {
    color: #6a0572; /* Hauptfarbe aus dem Bild */
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #6a0572;
}

footer {
    text-align: center;
    padding: 10px;
    background: #6a0572; /* Wiederholung der Purpurfarbe */
    color: #fff;
}

.no-spam {
    user-select: none; /* Schutz vor Spam-Bots */
}