* {
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  line-height: 150%;
}

body {
  min-height: 100vh;
}

a {
  text-decoration: none;
}

nav {
  background-color: #ffffff;
  width: 100%;
  box-shadow:
    0 4px #0066ff,
    0 4px 8px #3f3f3f;
  z-index: 2;
  position: fixed;
}

.nav-wrapper {
  display: flex;
  margin: 0 auto;
  max-width: 1280px;
  box-sizing: border-box;
}

.nav-wrapper > a {
  margin-right: auto;
}

.logo {
  height: 103px;
  width: auto;
  margin: 12px 16px;
}

.menu {
  width: 100%;
  margin: auto auto 12px;
  max-width: 720px;
}

.nav-list {
  display: flex;
  justify-content: space-between;
}

.close {
  display: none;
}

nav #active {
  color: #00a3ff;
}

li {
  list-style-type: none;
}

ul.bullet > li {
  list-style-type: disc;
  margin-left: 20px;
}

ol.roman > li {
  list-style-type: upper-roman;
  margin-left: 20px;
}

ol.decimal > li {
  list-style-type: decimal;
}

.nav-list a:hover {
  color: #00a3ff;
}

.nav-list a {
  text-decoration: none;
  color: #0066ff;
  font-size: 1.45rem;
}

.nav-list li ul {
  display: none;
  /*  box-shadow: -2px 0 1px #000000, 0 3px 1px #000000, 2px 0 1px #000000;*/
}

.nav-list li:hover ul {
  position: fixed;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 0 16px;
  left: -16px;
}

.buttons {
  margin: 8px 8px 0 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.burgermenu {
  display: none;
}

.translate-link {
  cursor: pointer;
}

.translate-link > img {
  width: 64px;
  height: auto;
}

.bannerbild {
  /*Verlauf ins weiß*/
  width: 100%;
  margin: 128px 0 0;
  height: auto;
}

.main {
  max-width: 1000px;
  margin: 32px auto;
}

h1,
h2 {
  margin-bottom: 8px;
  margin-left: -1px;
  font-weight: 500;
}

h1 {
  font-size: 2.1rem;
  color: #0066ff;
}

h2 {
  font-size: 1.8rem;
  color: #545454;
}

footer {
  width: 100%;
  height: 64px;
  background-color: #d6d6d6;
  border-top: solid 4px #0066ff;
}

.footer-wrapper {
  max-width: 1000px;
  margin: 10px auto auto;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

footer #active {
  color: #5e5e5e;
}

.footer-list a {
  color: #303030;
  text-decoration: none;
}

.footer-list a:hover {
  color: #5e5e5e;
}

@media screen and (max-width: 900px) {
  * {
    font-size: 1rem;
  }

  .menu {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    width: 256px;
    height: 100vh;
    z-index: 3;
    box-shadow: 0 0 8px #000000;
    background-color: #ffffffb0;
    backdrop-filter: blur(10px);
  }

  @supports (-webkit-hyphens: none) {
    .menu {
      background-color: #ffffffcd;
    }
  }

  .nav-list {
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .nav-list li {
    margin-bottom: 16px;
  }

  .nav-list a {
    width: 100%;
    display: block;
  }

  .close {
    margin-top: 12px;
    display: block;
  }

  .close img {
    width: 26px;
    height: 26px;
  }

  @media screen and (max-width: 500px) {
    .menu {
      width: 100vw;
    }
  }

  .logo {
    height: 81px;
    margin-bottom: auto;
  }

  .burgermenu {
    display: block;
    margin: 0 0 auto auto;
  }

  .burgermenu img {
    height: 32px;
    width: 32px;
  }

  .translate-link > img {
    width: 48px;
  }

  .bannerbild {
    margin-top: 102px;
  }

  .main {
    max-width: 94%;
    margin-top: 12px;
  }

  h1,
  h2 {
    line-height: 110%;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}
