body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* Home Link */
nav {
    margin-bottom: 20px;
}

.home-link {
    font-size: 18px;
    color: #1e88e5;
    text-decoration: none;
    font-weight: bold;
}

.home-link:hover {
    text-decoration: underline;
}

h1 {
    font-size: 32px;
    color: #444;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h2 {
    font-size: 24px;
    color: #444;
    margin-top: 30px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
    color: #666;
}

a {
    color: #1e88e5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}





footer {
    background-color: #555555; /* Dunkelgrauer Hintergrund passend zum Design */
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex; /* Flexbox verwenden für zentrierte Ausrichtung */
    justify-content: center; /* Horizontal zentrieren */
    align-items: center; /* Vertikal zentrieren */
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex; /* Flexbox verwenden für horizontale Ausrichtung */
    gap: 30px; /* Abstand zwischen den Links */
}

footer ul li {
    display: inline; /* Sicherstellen, dass die Listenelemente inline bleiben */
}

footer ul li a {
    color: #ffffff; /* Weiße Schriftfarbe */
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline; /* Unterstreichen beim Hover */
}
