/*
Das Bilder-Raster
*/
.myGallery {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit,  minmax(250px, 1fr));
}
.myGallery img {
  width: 100%;
}
/*
Text-Hover Effekt
*/
.myGallery .item {
  position: relative;
  overflow: hidden;
}
.myGallery .item img {
  vertical-align: middle;
}
.myGallery .caption {
  margin: 0;
  padding: 1em;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  overflow: auto;
  box-sizing: border-box;
  transition: transform 0.5s;
  transform: translateY(100%);
  background-color: rgba(0, 0, 0, 0.7);
  color: rgb(255, 255, 255);
  font-family: sans-serif;
}
.myGallery .item:hover .caption {
  transform: translateY(0%);
}
/*
Style der Seite
*/
body {
  background-color: white;
    font-family: sans-serif;

}
#logo {
  text-align: center;
  width: 100%;
  height: auto;
}
#menue {
  text-align:center; 
  width: 100%;
  margin: auto;
  height: auto;
  padding: 15px;
  box-sizing: border-box;
  position: sticky; top: 0;
  z-index: 99;
  background-color: white;
}
#imprint {
  text-align: center;
  width: 60%;
  height: auto;
  margin: auto;
}
#bild{
  text-align: center;
  max-width: 100%;
  height: auto;
  margin-top: 2em;
}
h1{
  font-family: sans-serif;
  font-weight: bolder;
  text-align: center;
  color: black;
  font-size: 26px;
}
h2{
  font-family: sans-serif;
  font-weight:normal;
  text-align: center;
  color: black;
  font-size: 20px;
}
p {
  font-family: sans-serif;
  font-weight: lighter;
  text-align: center;
  color: black;
}

a:link,
a:active,
a:visited {
  font-family: sans-serif;
  font-weight: bolder;
  color: black;
  text-decoration: none;
}
/* mouse over link */
a:hover {
  color: rgba(0, 255, 0, 0.8);
  text-decoration: none;
}
.myGallery {
  font-size: 1rem;
}
.cover{
  font-family: sans-serif;
  text-align: center;
}
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 0px; /* Place the button 30px from the right */
  z-index: 100; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: rgba(0, 255, 0, 0.8);
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 0px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: rgba(0, 255, 0, 0.8); /* Add a dark-grey background on hover */
}
 minmax(250px, 1fr));