body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #6dd5ed, #2193b0); /* Schöner Farbverlauf */
    color: #333;
}

.container {
    background-color: rgba(255, 255, 255, 0.9); /* Leicht transparentes Weiß */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 80%;
    max-width: 600px;
}

h1 {
    color: #2193b0;
    margin-bottom: 20px;
    font-size: 2.5em;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav li {
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: #0078d4;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
    background-color: #0078d4;
    color: white;
}
.bild { margin:20px auto;
text-align:center;
}