.galerie-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-start; 
}

.galerie {
  padding: 0.5rem 0;
  width: 350px;
  text-align: center;
}

.galerie img {
  width: 350px;
  height: 350px; 
  object-fit: cover; 
  border-radius: 4px; 
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.galerie:hover img {
  transform: scale(1.02);
}
