/* Header */
/* Hides the checkbox */
#nav-burger-checkbox {
  display: none;
}

/* Styles the burger icon */
#nav-burger {
  display: block;
  cursor: pointer;
  font-size: 3em;
  /* margin: 1em; */
  position: fixed;
  top: 1em;
  right: 1em;
  z-index: 1000;
}

/* Hides the navigation by default */
#main-navigation {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  color: white;
  z-index: 999;
  /* padding-top: 5vh; Add some padding to avoid overlapping with the burger icon */
}
#nav-burger-checkbox:checked ~ #nav-burger {
  /* right: 10%; */
  width: auto;
}
/* Shows the navigation when the checkbox is checked */
#nav-burger-checkbox:checked ~ #main-navigation {
  display: block;
}

/* Additional styling for the navigation menu */
#main-navigation nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: white;
}

#main-navigation > nav > a {
  color: black;
  text-decoration: none;
  display: block;
  padding: 0.5em 0;
  font-size: 30px;
}
.hand-hero img {
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.wp-block-image.hand-hero > figure.alignright.size-full {
  margin: 0;
}

.header-titel {
  width: 100%;
  margin: 0;
}


img.Logo {
  height: 400px;
  width: auto;
  position: absolute;
  left: 7vw;
  top: 1vh;
}

@media (max-width: 830px) {
  img.Logo {
    left: 0;
    max-height: 150px;
  }
}

@media (min-width: 1200px) and (max-width: 1300px) {
  img.Logo {
    left: -3vw;
  }
  .wp-block-image.hand-hero > figure.alignright.size-full {
margin-right: 200px;
  }
  .wp-block-column > figure.wp-block-image.size-full.hand-hero {
    margin-right: 200px !important;
  }

}
@media (min-width: 830px) and (max-width: 1030px) {
  img.Logo {
    left: -1vw;
  }
}


@media (min-width: 1400px) and (max-width: 1650px) {
  img.Logo {
    left: 5vw;
  }
  h3 {
    font-size: 42px;
  }
}

@media (min-width: 1700px) and (max-width: 1750px) {
  img.Logo {
    left: 4vw;
  }
}