body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header {
    background-color: #01193b;
    color: #fbd800;
    text-align: center;
    padding: 1em;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.centered-logo img {
    max-width: 70%;
    height: auto;
    margin: 0 auto;
    margin-left: 50%;
}

.right-logo img {
    max-width: 20%;
    height: auto;
    <!margin-right: 1em;>
}

.social-icons {
    display: flex; /* Zeige die Logos nebeneinander */
    gap: 10px; /* Abstand zwischen den Logos */
}
.social-icons a {
    text-decoration: none;
}
.social-icons img {
    width: 30px; /* Passe die Größe der Logos an */
    height: auto; /* Behalte das Seitenverhältnis bei */
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2, p {
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

footer {
    background-color: #01193b;
    color: #fbd800;
    text-align: center;
    padding: 1em;
    position: fixed;
    bottom: 0;
    width: 100%;
}