body {
    font-family: 'Arial', sans-serif;
    color: white;
    background-color: transparent; /* Transparenter Hintergrund */
    margin: 0;
    padding: 0;
}

/* Galerie-Container */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 20px auto;
    gap: 20px;
    padding: 10px;
}

/* Galerie-Item */
.gallery-item {
    width: 300px;
    max-width: 100%;
    border: 2px solid #444;
    border-radius: 10px;
    padding: 10px;
    background-color: rgba(26, 26, 26, 0.8); /* Leicht transparenter Hintergrund */
    text-align: center;
}

/* Bild im Galerie-Item */
.gallery-item img {
    width: 100%;
    border-radius: 8px;
    height: auto;
}

/* Beschreibung */
.description {
    margin-top: 10px;
    color: #ccc;
    font-size: 16px;
}

/* Hauptüberschrift */
h1 {
    text-align: center;
    color: white;
    margin: 30px 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* Mobiles Design */
@media (max-width: 600px) {
    .gallery-container {
        gap: 10px;
        padding: 5px;
    }

    .gallery-item {
        width: 100%; /* Volle Breite auf mobilen Geräten */
        padding: 8px;
        margin: 0 5px;
    }

    .description {
        font-size: 14px; /* Kleinere Schriftgröße für Beschreibungen auf mobilen Geräten */
    }

    h1 {
        font-size: 24px; /* Kleinere Schriftgröße für Überschrift auf mobilen Geräten */
    }
}
