* {
  /* zum Debugging aktivieren! */
}

/* Burger-Menü-Button,
auf kleinen Screens sichtbar  */
.burger {
  display: block;
}

nav {
  min-width: 150px;
  width: 30%;
  background-color: white;
  position: relative;
  z-index: 10;

  /* wie positioniere ich das Menü? */
  /* hier einfügen! */
  /* auch mit z-index arbeiten! */
}

nav ul {
  /* dadurch wird das Nav-Menü vertikal dargestellt */
  flex-direction: column;
  position: absolute;
  top: -15px;
  right: 15px;
  z-index: 20;
  background-color: white;
  padding: 1em;
  padding-right: 3em;
  box-shadow: 0 0 10px rgb(69, 69, 69);
}

blockquote {
  width: 100%;
  text-align: left;
  margin: 0;
  font-size: 110%;
}
