/* Allgemeine Schrift- und Hintergrundfarben */
body {
    font-family: Arial, Helvetica, sans-serif; /* Systemschriftarten */
    background-color: #243A64; /* Dunkelblauer Hintergrund */
    color: #FFFFFF; /* Weiße Schriftfarbe */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center; /* Zentrierter Text */
}

/* Überschriften */
h1 {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #FFFFFF;
}

h2 {
    font-size: 2rem;
    margin: 10px 0;
    color: #FFFFFF;
}

/* Links */
a {
    color: #FFFFFF; /* Weiße Links */
    text-decoration: none;
    font-weight: bold;
    margin: 0 10px; /* Abstand zwischen Links */
}

a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    margin-top: 20px;
}

.footer-links {
    margin-top: 10px;
}

/* Logo */
.logo {
    margin-bottom: 20px;
}

.logo img {
    max-width: 300px; /* Maximale Breite des Logos */
    height: auto;
}
