body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    text-align: center;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.gallery img {
    width: 45%;
    height: auto;
    margin: 0.5rem;
}

.facts, .links, .impressum {
    margin: 1rem 0;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.facts h2, .links h2, .impressum h2 {
    color: #4CAF50;
}

.facts ul, .links ul {
    list-style-type: none;
    padding: 0;
}

.facts li, .links li {
    margin: 0.5rem 0;
}

.links a {
    color: #4CAF50;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

footer {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 1rem;
}

/* Button-Stil */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white !important;
    background-color: #4CAF50;
    text-decoration: none !important;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    border: none;
}

.button:hover {
    background-color: #388E3C; 
    color: white !important;
    text-decoration: none !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery img {
        width: 100%;
        margin: 0.5rem 0;
    }

    main {
        padding: 0.5rem;
    }
}
