/* Grundlegende Stile */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #fff;
    color: #333;
    text-align: center;
}

header h1 {
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Galerie Raster */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    padding: 10px;
}

/* Galerie Elemente */
.gallery-item {
    overflow: hidden;
    background-color: #f4f4f4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

/* Hover-Effekt */
.gallery-item:hover img {
    transform: scale(1.05);
}

footer {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #888;
}
