/*Galerie*/

.galerie{
  padding-top:68px;
  padding-bottom: 68px;
  display:flex;
  flex-direction: column;  
}

.container {
  display:flex;
  justify-content:flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.Vorschaubild {
    margin: 5px 10px;
    box-shadow: 0 0 20px black;
}



.overlay {
  position: fixed;
  width:100%;
  /* height: 100%; */
  top: 10vh; left: 0;  
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.overlay img {
  max-width: 100%;
  max-height: 600px;
  box-shadow: 0 0 20px black;
}

.overlay a {
  max-width: 90%;
  max-height: 600px;
  box-shadow: 0 0 20px black;
}

.overlay:target {
  display: flex;
}

@media screen and (max-width: 670px) {

    .container {
        justify-content: center;
    }
    
}
