*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto; 
}

.container h3{

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 150%;
    color:rgb(88, 86, 86);
    padding-top: 20px;

}

.gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 40px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 1200px; /* Maximale Breite der Galerie */
    margin: 0 auto; /* Zentriert die Galerie */
    padding-top: 20px;
}

.gallery a {
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    border-radius: 5px;
}
.schrift{
    display: flex;
    padding: 0px;
    text-align: center;
    justify-content: center;
    border: solid 1px rgb(5, 5,5);
    color: black;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    border-radius: 2px;
   
}
 a{
    text-decoration: none; 
}

@media (max-width: 768px) {
    .gallery a {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .gallery a {
        flex: 1 1 calc(100% - 20px);
    }
}
