/* Grundlegende Stil-Einstellungen */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #282c34; /* Dunkler Hintergrund, nicht rein schwarz */
    color: #E0E0E0; /* Helle Textfarbe für guten Kontrast */
    line-height: 1.6;
}

/* Header-Stil */
header {
    background-color: #21252b;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Navigationsleiste */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #9da5b4;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #61afef; /* Heller Blauton für Hover-Effekte */
}

/* Abschnitt-Überschriften */
h1, h2, h3 {
    color: #61afef; /* Blaue Akzente für Überschriften */
    margin-bottom: 20px;
}

/* Abschnitts-Stil */
section {
    background-color: #2c313a; /* Jeder Abschnitt hat einen leicht unterschiedlichen Hintergrundton */
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

/* Kontakt- und Footer-Stil */
#contact, footer {
    background-color: #21252b;
    color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

footer {
    text-align: center;
}

/* Links-Stil */
a {
    color: #61afef;
    text-decoration: none;
}

a:hover {
    color: #e06c75; /* Roter Akzent für Hover bei Links */
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
}
