/* Grundstil */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", "Roboto", sans-serif;
    background: #6485c5;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Seite wird zentriert */
.center-wrapper {
    text-align: center;
    margin-top: 12vh;
}

.logo {
    width: 750px;
    height: auto;
    margin-bottom: 25px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #0a3d62;
}

p {
    font-size: 1.1rem;
    color: white;
}

/* Footer */
.site-footer {
    margin-top: auto;
    text-align: center;
    padding: 20px 0;
    background: #0a3d62;
    color: white;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    margin: 0 12px;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
    transition: 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.site-footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsiv */
@media (max-width: 600px) {
    .logo {
        width: 140px;
    }

    h1 {
        font-size: 1.6rem;
    }

    p {
        font-size: 1rem;
    }
}
