/* 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 {
	    max-width: 600px; /* Begrenzung der Breite */
	    margin: 0 auto; /* Zentriert die gesamte Box */
	    text-align: center;
	    
	}

	form {
	    display: flex;
	    flex-direction: column; /* Stapelt die Elemente untereinander */
	    align-items: center; /* Zentriert die Inputs */
	    width: 100%;
	}
	label {
	    font-size: 28px;  /* Größere Schriftgröße */
	    font-weight: bold; /* Optional: Fettgedruckt */
	    display: block;    /* Stellt sicher, dass das Label über dem Input bleibt */
	    margin-bottom: 5px; /* Etwas Abstand nach unten */
	}
	
	
	input, textarea {
	    width: 80%; /* Vergrößert die Felder */
	    max-width: 500px; /* Begrenzung der maximalen Breite */
	    padding: 10px;
	    margin: 10px 0; /* Abstand zwischen den Feldern */
	    border: 1px solid #ccc;
	    border-radius: 5px;
	}
        button {
            margin-top: 15px;
            padding: 10px;
            width: 100%;
            background-color: #007BFF;
            border: none;
            color: white;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
        }
        button:hover {
            background-color: #0056b3;
        }
        h1 {
        		text-align: center;
        		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 */
            }
			}            						
            						

        
        /* Footer */
        footer {
            background-color: #003366;
            color: white;
            text-align: center;
            font-size: 22px;
            padding: 10px;
            position: fixed;
    			bottom: 0;
 			   width: 100%;
        }