:root {
    --hell: rgb(213, 228, 235);
    --dunkel: rgb(21, 24, 65);
    --hauptfarbe: #2C3E50;
    --akzentfarbe: #E74C3C;
}

body {
    margin: 0;
    background: var(--hell);
    font-family: Arial, sans-serif;
    color: var(--dunkel);
}

header {
    padding: 20px;
    text-align: center;
}

.teaser {
    height: 400px;
    overflow: hidden;
}

.teaser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

nav {
    background-color: var(--hauptfarbe);
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section h1 {
    color: var(--hauptfarbe);
    text-align: center;
}

section p {
    line-height: 1.6;
    text-align: justify;
}

section h2 {
    color: var(--akzentfarbe);
    margin-top: 30px;
}

section h3 {
    color: var(--hauptfarbe);
    margin-top: 20px;
}

section ul {
    margin-top: 10px;
}

footer {
    background-color: var(--hauptfarbe);
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: white;
    text-decoration: none;
}

footer ul {
    list-style: none;
}

.mitte {
    display: flex;
    justify-content: center;
    align-items: center;
}

#galerie {
    text-align: center;
    margin-top: 50px;
}

.galerie-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.galerie-bild {
    width: 300px;
    height: auto;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.schaltflächen button {
    background-color: var(--hauptfarbe);
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
}

.schaltflächen button:hover {
    background-color: var(--akzentfarbe);
}
