@media screen and (min-width:1001px) {
  .nav-header {
    display: table;
    width: 100%;
    /*height: 75%; /* Height of the Header */
    background: #1abc9c;
    font-size: 3rem;
    font-family: futura-bold;
    margin-bottom: 1.7rem; /* size of drop-shadow */
    filter: drop-shadow(0 0 0.75rem #1abc9c); /* size of drop-shadow */
  }

    .nav-header ul {
      margin-top: 0px;
      margin-bottom: 0;
      padding: 0.5vh;

    }
    .nav-header li {
      display: inline-block;
      line-height: min(7.5vh, 7.5vh); /* Height of the Header*/

    }
    .nav-header a {
      text-align: center;
      color: white;
      text-decoration: none;

    }
      .nav-header a:visited {
        color: white;
        text-decoration: none;

      }
      .nav-header a:hover {
        color: #e0ddd7;
        text-decoration: none;

      }
  #menu {
    text-align: center;
  }

  #menu img {
    height: 38px;
  }

  #menuToggle input {
    display: none;
    /*opacity: 0*/
  }

}

@media screen and (max-width: 1000px) {
    #menuToggle
  {
    display: block;
    position: relative;
    top: 50px;
    left: 50px;

    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
  }

  #menuToggle a
  {
    text-decoration: none;
    color: #232323;

    transition: color 0.3s ease;
  }

  #menuToggle a:hover
  {
    color: tomato;
  }


  #menuToggle input
  {
    display: block;
    width: 2.44rem;
    height: 1.5rem;
    position: absolute;
    top: -7px;
    left: -5px;

    cursor: pointer;

    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */

    -webkit-touch-callout: none;
  }

  /*
   * Just a quick hamburger
   */
  #menuToggle span
  {
    display: block;
    width: 2rem;
    height: 0.25rem;
    margin-bottom: 0.26rem;
    position: relative;

    background: crimson;
    border-radius:0.22rem;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
  }

  #menuToggle span:first-child
  {
    transform-origin: 0% 0%;
  }

  #menuToggle span:nth-last-child(2)
  {
    transform-origin: 0% 100%;
  }

  /*
   * Transform all the slices of hamburger
   * into a crossmark.
   */
  #menuToggle input:checked ~ span
  {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323;
  }

  /*
   * But let's hide the middle one.
   */
  #menuToggle input:checked ~ span:nth-last-child(3)
  {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
  }

  /*
   * Ohyeah and the last one should go the other direction
   */
  #menuToggle input:checked ~ span:nth-last-child(2)
  {
    transform: rotate(-45deg) translate(0, -1px);
  }

  /*
   * Make this absolute positioned
   * at the top left of the screen
   */
  #menu
  {
    position: absolute;
    width: 100%;
    margin: -100px 0 0 -50px;
    padding: 50px;
    padding-top: 125px;

    background: #1abc9c;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */

    transform-origin: 0% 0%;
    transform: translate(-100%, 0);

    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  }

  #menu img {
    height: 114px;
  }

  #menu li
  {
    padding: 10px 0;
    font-size: 6rem;
  }

  /*
   * And let's slide it in from the left
   */
  #menuToggle input:checked ~ ul
  {
    transform: none;
  }
}

section {
  display: flex;
  flex-direction: column;
  width: 70%;
  position: absolute;
  left: 50%;
  padding-top: 0px;
  margin-top: 0;
  height: 100%;
  transform: translateX(-50%);

}

iframe {
  position: relative;
  height: 800px;
  border: none
}

body {
  background-color: #f5f3f2;
  margin: 0px;
}

.impressum {
  color: black;
  font-family: serif;
  margin-left: 7px;
}
.impressum h1 {
  text-decoration: underline
}
