/* Allgemeine Stile */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #000;
}

/* Container-Stil */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Stil für Header, Nav, Main und Footer */
header, nav, main, footer {
    padding: 20px 0;
    text-align: center;
}

/* Header-Stile */
header h1 {
    color: #d9534f;
}

header h2 {
    color: #28a745;
}

/* Navigation-Stile */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

nav a {
    text-decoration: none;
    color: #d9534f;
    font-weight: bold;
}

nav a:hover {
    color: #c9302c;
}

/* Bildergalerie-Stile */
.image-gallery {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: hidden;
}

.image-gallery img {
    width: 200px;
    height: auto;
    margin: 5px;
}

@media screen and (max-width: 600px) {
    .image-gallery img {
        width: 100%;
    }
}

/* Formular-Stile */
form {
    display: inline-block;
}

form label {
    display: block;
    margin-bottom: 10px;
}

input[type="text"],
.large-input {
    font-size: 20px;
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border: 1px solid #000;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* Button-Stile */
.button input[type="submit"] {
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 30px;
    cursor: pointer;
    font-size: 16px;
}

.button input[type="submit"]:hover {
    background-color: #218838;
}

/* Footer-Stile */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #d3d3d3;
}
