/* Allgemeine Stile */
body {
    font-family: 'Courier New', Courier, monospace; /* Typewriter-Schrift */
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* Weißer Hintergrund */
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80vh;
    text-align: center;
}

body::before {
    content: "";
    position: absolute;
    top: 0px; /* Hintergrundbild höher setzen */
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Summer Wallpaper.png');
    background-size: var(--bg-size, 70%); /* Standardgröße von 70% */
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: background-size 0.1s ease-out;
}



/* Main-Stil */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Elemente untereinander anordnen */
    margin-top: -300px; /* Text weiter nach oben verschieben */
}

/* Überschrift-Stil */
h1 {
    color: #388e3c; /* Grüne Farbe */
    font-size: 4rem;
}

/* Footer-Stil */
footer {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    color: #000;
    padding: 10px;
    background-color: white;
    position: fixed;
    bottom: 0;
    background: transparent; /* Hintergrund entfernen */
    left: 0;
}


/* Navbar-Stil */
.navbar {
    width: 100%;
    background-color: white; /* Heller Footer-Hintergrund */
}
