body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('index_logo_tmp.png'); /* Pfad zum Hintergrundbild */
    background-size: cover; /* Passt das Hintergrundbild an die Bildschirmgröße an */
    background-position: center; /* Zentriert das Bild */
    background-repeat: no-repeat; /* Verhindert das Wiederholen des Bildes */
    background-attachment: fixed; /* Lässt das Bild beim Scrollen fest */
    color: black; /* Schriftfarbe auf Schwarz setzen */
    text-align: center;
    min-height: 100vh; /* Sorgt dafür, dass das Bild die gesamte Höhe des Bildschirms abdeckt */
}

nav {
    background-color: rgba(0, 0, 0, 0.6); /* Halbtransparentes Menü */
    padding: 15px;
    position: fixed;
    top: 0;
    width: 100%;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
}

nav a:hover {
    text-decoration: underline;
}

.content {
    padding: 100px 20px;
}

h1 {
    margin-top: 50px;
    font-size: 48px;
}

p {
    font-size: 20px;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}
