/* Grundlayout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Heller Hintergrund */
    color: #333; /* Dunkle Schriftfarbe für gute Lesbarkeit */
}

/* Header und Navigation */
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

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

header nav ul li {
    display: inline;
    margin: 0 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Inhalt der Seiten */
.content {
    width: 100%;
    max-width: 900px; /* Maximale Breite von 900px */
    margin: 50px auto; /* Zentriert und oben etwas Abstand */
    padding: 20px;
    background-color: #ffffff; /* Weißer Hintergrund für den Inhalt */
    border-radius: 8px; /* Abgerundete Ecken für ein modernes Design */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Leichter Schatten für den Container */
}

h1 {
    font-size: 2.5rem; /* Größere Schrift für den Titel */
    color: #b88a44; /* Bronzefarbener Text */
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

ul {
    margin-left: 20px;
    font-size: 1.2rem;
}

footer {
    text-align: center;
    margin-top: 30px;
}

footer a {
    color: #b88a44; /* Farbiger Link für das Impressum und Datenschutz */
    text-decoration: none;
    font-size: 1.1rem;
}

footer a:hover {
    text-decoration: underline;
}
