/* Allgemeine Reset-Regeln */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Grundlegende Schriftarten und Farben */
body {
    font-family: 'Arial', sans-serif;
    background-color: #7576de;
    color: #333;
    text-align: center;
    line-height: 1.6;
}

h2, h3 {
    font-family: 'Arial', sans-serif;
    color: #2c3e50;
}

h1 {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    text-shadow: 3px 3px black;
}

a {
    text-decoration: none;
}

a:hover {
    color: #3498db;
}

/* Navigation */
nav {
    background-color: #34495e;
    padding: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
}

/* Header */
header {
    background-color: #34495e;
    color: white;
    padding: 20px 0;
}

header h1 {
    font-size: 3rem;
}

/* Hauptinhalt */
main {
    margin: 20px;
}

main h2, main h3 {
    margin-top: 20px;
}

/* Bildanpassungen */
.images {
    margin-top: 40px;
}

.images div {
    margin-bottom: 20px;
}

.image-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    font-size: 1.2rem;
}
