@charset "UTF-8";
/* CSS Document */


 .gallery {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    
}
.schrift-gallerie{
    font-family: "lato", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.6em;
    margin-bottom: 1.8em;
    text-transform: uppercase;
}
.schrift-gallerie1{
font-family: "lato", sans-serif;
font-weight: 200;
font-style: normal;
	font-size: 1.2em;
	margin-bottom: 2em
}

.gallery-item {
  position: absolute;
  margin: 0;
  padding: 0;
  cursor: pointer;
  z-index: 1;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  transition: transform 0.4s ease;
}

/* Beim Darüberfahren 50 % größer */
.gallery-item:hover {
  z-index: 9999;
}

.gallery-item:hover img {
  transform: scale(1.3);
}

/* Tablet */
@media (max-width: 900px) {
  .gallery {
    width: 100%;
  }
}


/* Handy */
@media (max-width: 500px) {
  .gallery {
    width: 100%;
  }
}