:root {
  --schwarz: #000;
  --weiss: white;
  --transparent: transparent;
  --white: white;
  --black: black;
}

a {
  color: var(--schwarz);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.header {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 5vw;
  display: flex;
}

.header-bild-div {
  background-color: var(--schwarz);
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 5vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.img-100x100-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.img-100x100-cover.header-bild {
  opacity: .85;
}

.logo {
  z-index: 2;
  height: 10vw;
  position: absolute;
}

.verlauf {
  z-index: 1;
  opacity: .41;
  background-image: linear-gradient(#000, #0000);
  width: 100%;
  height: 25%;
  position: absolute;
  inset: 0% 0% auto;
}

.section {
  grid-column-gap: 10vw;
  grid-row-gap: 10vw;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 5vw;
  display: flex;
}

.heading {
  color: var(--schwarz);
  text-align: center;
  text-transform: none;
  font-family: brandon-grotesque, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 110%;
}

.heading.header-text {
  z-index: 2;
  color: var(--weiss);
  padding-left: 40px;
  padding-right: 40px;
  position: absolute;
  inset: auto 0% 5%;
}

.text-span {
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-family: brandon-grotesque, sans-serif;
  font-size: 60px;
  font-weight: 900;
}

.ptext {
  text-align: center;
  font-family: brandon-grotesque, sans-serif;
  font-size: 24px;
  line-height: 130%;
}

.inhalt {
  grid-column-gap: 5vw;
  grid-row-gap: 5vw;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1024px;
  display: flex;
  overflow: hidden;
}

.text-block {
  z-index: 2;
  text-align: center;
  font-family: brandon-grotesque, sans-serif;
  position: absolute;
  inset: auto 0% 0%;
}

.image {
  width: 100px;
}

.body {
  padding-right: 30px;
}

.div-block {
  background-color: var(--schwarz);
  width: 30px;
  height: 100vh;
  position: fixed;
  inset: 0% 0% 0% auto;
}

.link:hover {
  text-decoration: underline;
}

.text-block-2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-family: brandon-grotesque, sans-serif;
}

.div-block-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 991px) {
  .header {
    height: 50vh;
  }

  .heading {
    font-size: 30px;
  }

  .text-span {
    font-size: 50px;
  }

  .ptext {
    font-size: 20px;
  }

  .link {
    color: var(--schwarz);
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  .heading {
    font-size: 20px;
  }

  .text-span {
    font-size: 40px;
  }

  .ptext {
    font-size: 16px;
  }

  .image {
    width: 75px;
  }
}

@media screen and (max-width: 479px) {
  a {
    color: var(--schwarz);
    vertical-align: baseline;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  .logo {
    height: 80px;
  }

  .heading {
    font-size: 18px;
  }

  .text-span {
    font-size: 30px;
  }

  .body {
    padding-right: 20px;
  }

  .div-block {
    width: 20px;
  }
}


