/* Sanfter Farbverlauf Hintergrund */
body {
    margin: 0;
    width: 100vw; /* Volle Breite */
    height: 100vh; /* Volle Höhe des Viewports */
    overflow: hidden; /* Entfernt Scrollbalken */
    background: linear-gradient(135deg, 
        #89CFF0, /* Helles Blau */
        #D8BFD8, /* Flieder */
        #F8BBD0, /* Sanftes Rosa */
        #FFE4B5, /* Weiches Gelb */
        #BFEFFF, /* Zartes Cyan */
        #E6E6FA  /* Lavendel */
    );
    background-size: 400% 400%; /* Ermöglicht die Bewegung des Verlaufs */
    animation: gradientAnimation 60s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: #333;
    text-align: center;
}

/* Animation für den Farbverlauf */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Überschrift Stil */
h1 {
    font-size: 3rem;
    margin: 0;
}

