/* Grundlegende Reset-Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body-Stile */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-image: url('https://check-deine-mails.com/background.png'); /* Ersetze dies durch den Pfad zu deinem Bild */
    background-size: cover; /* Bild anpassen */
    background-position: center; /* Bild zentrieren */
    background-repeat: no-repeat; /* Verhindert das Wiederholen des Bildes */
    color: #333;
    padding: 20px;
}

/* Header-Stile */
header {
    background: #35424a;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

/* Navigation */
nav {
    margin: 20px 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    transition: background 0.3s, color 0.3s;
}

nav a:hover {
    background: #e8491d;
    color: #ffffff;
}

/* Hauptinhalt */
main {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Absätze */
p {
    margin: 15px 0;
}

/* Fußzeile */
footer {
    text-align: center;
    padding: 20px 0;
    background: #35424a;
    color: #ffffff;
}

/* Sitemap */
#sitemap {
    margin-top: 20px;
}

#sitemap h2 {
    margin-bottom: 10px;
}

#sitemap ul {
    list-style-type: none;
    padding: 0;
}

#sitemap li {
    margin: 5px 0;
}

#sitemap a {
    color: #e8491d;
    text-decoration: none;
}

#sitemap a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    nav li {
        display: block;
        margin: 5px 0;
    }

    body {
        padding: 10px;
    }
}
