/* Galerie-Container */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
}

/* Bilder */
.gallery img {
    width: 300px;      /* Einheitliche Breite */
    height: auto;      /* Höhe automatisch */
    border-radius: 10px;
    display: block;
}

/* Bildtitel */
.gallery p {
    text-align: center;
    font-size: 16px;
    margin-top: 8px;
    font-weight: bold;
}

/* Header-Bild größer darstellen */
.gallery div:first-child img {
    width: 600px;      /* Header doppelt so breit */
    height: auto;
}
