<style>
/* Allgemeine Stile */
body {
    font-family: Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    text-align: justify; /* Blocksatz */
}

li {
    text-align: left;
}

p {
    margin: 15px 0; /* 15px Abstand oben und unten */
}

/* Stil für h1 */
h1 {
    font-size: 36px; /* Größte Schriftgröße */
    line-height: 1.3; /* Angenehmer Zeilenabstand */
    text-align: center; /* Zentriert */
    background-color: #f9f9f2; /* Schmutziges Weiß mit leichtem Gelbstich */
    border: 2px solid black; /* Schwarze Umrandung */
    border-radius: 10px; /* Abgerundete Ecken */
    padding: 10px; /* Innenabstand */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
}

/* Stil für h2 */
h2 {
    font-size: 28px;
    line-height: 1.3;
    text-align: center; /* Zentriert */
}

/* Stil für h3 */
h3 {
    font-size: 22px;
    line-height: 1.4;
    text-align: center; /* Zentriert */
}

/* Stil für h4 */
h4 {
    font-size: 20px;
    font-weight: normal; /* Weniger hervorgehoben */
}

/* Stil für h5 */
h5 {
    font-size: 18px;
    font-weight: normal;
}

.special-text {
    text-align: left; /* Linksbündig */
}

/* Navigation */
nav {
    text-align: center;
    background: #eee;
    padding: 10px;
}

nav a {
    margin: 0 10px;
    color: #0056b3; /* Blauton */
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* Content */
.content {
    width: 80%;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: justify; /* Text im Blocksatz */
}

/* Boxen (Cards) */
.card {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    background-color: #f9f9f9;
    text-align: justify; /* Text im Blocksatz */
}

/* Boxen (Cards) */
.card2 {
    border: 3px solid #ddd;
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    background-color: #E0F8F1;
    text-align: justify; /* Text im Blocksatz */
}

/* Boxen (Cards) */
.card3 {
    border: 3px solid #ddd;
    padding: 15px;
    margin: 15px 0;
    border-radius: 20px;
    background-color: #FBF5EF;
    text-align: justify; /* Text im Blocksatz */
}

/* Boxen (Cards) */
.card4 {
    border: 3px solid #ddd;
    padding: 15px;
    margin: auto;
    border-radius: 40px;
    background-color: #E6E6E6;
    text-align: justify; /* Text im Blocksatz */
    width: 60%;
}

/* Allgemeine Bildstile */
img {
    max-width: 100%; /* Passt sich an die Bildschirmbreite an */
    max-width: 500px; /* Maximal 500px auf großen Bildschirmen */
    height: auto; /* Proportionale Höhe */
    display: block; /* Zentriert das Bild */
    margin: 0 auto; /* Zentriert */
    border: 1px solid #ddd; /* Bildrahmen */
    border-radius: 5px; /* Abgerundete Ecken */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Schattierung */
}

/* Spezielles Bild (z. B. Banner) */
.special-image {
    display: block;
    margin: 0 auto; /* Zentrieren */
    max-width: 1000px; /* Spezielle maximale Breite */
    width: 100%; /* Füllt den verfügbaren Platz */
    height: auto; /* Proportionale Höhe */
    border: 1px solid black; /* Schwarzer Rahmen */
}

/* Links */
a {
    color: #0073e6; /* Ein freundlicher Blauton */
    text-decoration: none;
}

a:hover {
    color: #005bb5; /* Dunkleres Blau beim Hover */
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background: #eee;
}

/* Responsive Design für kleinere Bildschirme */
@media (max-width: 768px) {
    img {
        max-width: 100%; /* Breite füllt den Bildschirm aus */
    }

    .content {
        width: 95%; /* Weniger Abstand an den Seiten */
    }
}

p {
    text-align: justify !important; /* Erzwinge Blocksatz für alle Absätze */
}
</style>

<style>
/* Globales Box-Sizing */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Allgemeine Stile */
body {
    font-family: Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9; /* Hauptseitenhintergrund */
}

/* Navigation */
.navbar {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background-color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1px 0; /* Weniger Innenabstand oben und unten */
    flex-wrap: nowrap;
    overflow-x: auto;
}

.navbar a {
    color: white;
    text-decoration: underline; /* Unterstrichen */
    font-weight: bold; /* Fett */
    font-size: 16px;
    padding: 3px 8px; /* Weniger Abstand innerhalb der Links */
    white-space: nowrap;
}

.navbar a:hover {
    background-color: #333; /* Hintergrundfarbe beim Hover */
    color: #00ccff; /* Hellblauer Text beim Hover */
}

/* Container für den Hauptinhalt */
.container {
    max-width: 1000px;
    width: 100%;
    margin: 10px auto; /* Weniger Abstand nach oben und unten */
    text-align: center;
    background-color: #ffffff; /* Heller Hintergrund für die Box */
    border: 1px solid #ddd; /* Dünner Rand */
    border-radius: 8px; /* Abgerundete Ecken */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    padding: 5px; /* Weniger Innenabstand */
}

/* Bildstil für das Banner */
.special-image {
    display: block;
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
    height: auto;
    border: 1px solid black;
}

/* Stile für andere Links */
a {
    text-decoration: none; /* Standard-Links ohne Unterstreichung */
    font-weight: normal; /* Standard-Links normal */
    color: #0056b3; /* Blau */
}

a:hover {
    color: #003d80; /* Dunkleres Blau beim Hover */
}

/* Responsive Verhalten */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .container {
        width: 95%; /* Noch flexibler auf kleinen Bildschirmen */
    }
}
</style>

<style>
.list-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff; /* Weißer Hintergrund */
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    border: 1px solid #ddd; /* Dezente Umrandung */
}

.list-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.alphabet-links {
    display: flex;
    flex-wrap: wrap; /* Links umbrechen, wenn nicht genug Platz */
    justify-content: center; /* Zentriert alle Links */
    gap: 10px; /* Abstand zwischen den Links */
}

.alphabet-links a {
    text-decoration: none;
    color: #0056b3; /* Blaue Links */
    background-color: #f9f9f9;
    padding: 10px 15px; /* Innenabstand */
    border-radius: 5px; /* Abgerundete Ecken */
    border: 1px solid #ddd; /* Leichter Rahmen */
    transition: background-color 0.3s, color 0.3s; /* Sanfte Hover-Effekte */
}

.alphabet-links a:hover {
    background-color: #0056b3; /* Blau beim Hover */
    color: #ffffff; /* Weißer Text beim Hover */
}

/* Layout für die Sidebar */
.sidebar {
    width: 180px; /* Breite der Sidebar */
    position: absolute;
    right: 10px;
    top: 50px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Überschrift der Sidebar */
.sidebar h3 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}

/* Bilder in der Sidebar */
.sidebar-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.sidebar-images img {
    width: 150px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.2s ease-in-out;
}

.sidebar-images img:hover {
    transform: scale(1.05);
}

/* Anpassung für kleinere Bildschirme */
@media (max-width: 768px) {
    .sidebar {
        position: relative;
        width: 100%;
        text-align: center;
    }

    .sidebar-images {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .sidebar-images img {
        width: 100px; /* Kleinere Breite auf Handys */
        height: 35px;
    }
}
</style>
