/* Grundlegendes Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #fff; /* Weißer Hintergrund */
    text-align: center; /* Text zentrieren */
    padding: 0 20px; /* Abstand für kleine Bildschirme links und rechts */
}

header {
    margin-bottom: 20px;
    width: 100%;
}

.responsive-logo {
    max-width: 500px; /* Logo kleiner machen */
    height: auto;
    margin: 0 auto; /* Sicherstellen, dass das Logo zentriert ist */
    display: block;
}

/* Hauptinhalt Styling */
main {
    background-color: #fff; /* Weißer Hintergrund */
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    text-align: center; /* Text zentrieren */
}

h1 {
    color: #333;
    font-size: 1.8em;
}

p {
    color: #555;
    font-size: 1.2em;
}

a {
    color: #e64522;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer Styling */
footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #777;
    text-align: center; /* Footer-Text zentrieren */
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
    main {
        padding: 15px;
    }

    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }

    .responsive-logo {
        max-width: 200px; /* Logo noch kleiner auf kleinen Bildschirmen */
    }

    body {
        padding: 0 15px; /* Mehr Abstand links und rechts auf kleinen Bildschirmen */
    }
}
