body {
  background-color: #f6e4f6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  }

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;

  position: relative;
   }

.logo {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  position: absolute;
  top: 20px;

}

.container-navi {
  justify-content: center;
  text-align: center;
  margin-top: 30vh;
    transition: margin-top 0.5s, font-size 0.2s, flex-direction 0.5s,
    justify-content 0.5s;
  font-size: 24px;
  font-family: "The Girl Next Door", cursive;
}

.menu {
  color: rgb(0, 0, 0);
  text-decoration: none;
  cursor: pointer;
  margin: 10px 10px;
  flex-direction: column;
  margin-top:10px;
   }
.menu:hover {
  font-weight: bold;
}
.hidden {
  display: none;
}
.gallery {
  display: none;
  margin-top: 20px;
  column-count: 3;
  column-gap: 20px;
}
.gallery.show {
  display: block;
}
.masonryblocks {
  display: inline-block;
  padding: 10px;
  margin: 0 0 10px;
  width: 100%;
  box-sizing: border-box;
  transform: scale(1);
}
.masonryblocks img {
  width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  border-radius: 10px;
}
.masonryblocks:hover img {
  transform: scale(1.1);
  opacity: 1;
}
/* Größe im Display änder: */
@media screen and (max-width: 768px) {
  .masonryholder {
    column-count: 1;
  }
}

@media screen and (min-width: 769px) {
  .masonryholder {
    column-count: 2;
  }
}

@media screen and (min-width: 1080px) {
  .masonryholder {
    column-count: 3;
  }
}

@media screen and (min-width: 1200px) {
  .masonryholder {
    column-count: 4;
  }
}

.menu-active {
  margin-top: 150px;
  display: flex;
  justify-content: space-around;
  width: 100%;
  }

.menu.active {
  font-weight: bold;
  font-size: 25px;
  margin: 0 50px;
}
.form-group {
  justify-content: center;
  text-align: center;
  margin: 10vh;
  padding: 0;
}
.input-checkbox{

}
footer p {
  display:fixed;
  margin: 0px;
  margin-top: 500px;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  line-height:4;
  bottom: 0;
  background-color: #f6e4f6; /* Hintergrundfarbe des Footers anpassen */
}
