/* Hiermit wird der Body mit Farbverlauf, auf den ganzen Browser ausgedehnt */
        html, body {
    			height: 100%;
			}

        body {
            font-family: "Edwardian Script ITC", cursive;
            margin: 0;
            padding: 0;
            background: linear-gradient(to bottom, #ffffff, #dbeafe);
            color: #333;
        }

        /* Header mit Navigation */
        header {
            background-color: #004080;
            color: white;
            padding: 15px;
            text-align: center;
            font-size: 48px;
        }

        nav {
            background-color: #003366;
            padding: 10px;
            font-size: 28px;
            text-align: center;
        }

        nav a {
            color: white;
            text-decoration: none;
            padding: 10px 20px;
            display: inline-block;
            transition: background 0.3s;
        }

        nav a:hover {
            background-color: #0055aa;
            border-radius: 5px;
        }

        /* Hauptbereich */
        .container {
            text-align: center;
            font-size: 28px;
            padding: 10px;
        }

        h1 {
        		color: red;
            font-size: 48px;
            animation: fadeInOut 10s ease-in-out infinite; /* Unendliche Schleife */
        }
			
         @keyframes fadeInOut {
            0% {
                opacity: 0; /* Unsichtbar */
            }
            25% {
                opacity: 1; /* Sichtbar */
            }
            50% {
                opacity: 0; /* Wieder unsichtbar */
            }
            75% {
                opacity: 1; /* Wieder sichtbar */
            }
            100% {
                opacity: 0; /* Endzustand unsichtbar */
            }
			}            						
            						

        /* Bildergalerie */
        .gallery {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            padding: 10px;
        }

        .gallery img {
            width: 200px;
            height: 150px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .gallery img:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .grafik {
            display: block;
            margin: 20px auto; /* Zentriert das Bild */
            max-width: 100%; /* Bild passt sich der Breite an */
            height: auto;
        }

        /* Footer */
        footer {
            background-color: #003366;
            color: white;
            text-align: center;
            font-size: 22px;
            padding: 10px;
            position: fixed;
    			bottom: 0;
 			   width: 100%;
        }