* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-size: 18px;
  line-height: 1.5;
  --padding: 1.5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #191917;
  --color-light: #efefef;
  --color-text: var(--color-honey);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-grey);
  --color-honey: #ffd700;
  --color-honey-yellow: #f2c778;
  --color-honeycombs: #8b4513;
  --color-hive: #ffa500;
  --color-green: #228b22;
  --color-code-light-grey: #cacbd1;
  --color-code-comment: #a9aaad;
  --color-code-white: #c5c9c6;
  --color-code-red: #d16464;
  --color-code-orange: #de935f;
  --color-code-yellow: #f0c674;
  --color-code-green: #a7bd68;
  --color-code-aqua: #8abeb7;
  --color-code-blue: #7e9abf;
  --color-code-purple: #b294bb;
  --font-family: "Atkinson Hyperlegible", Roboto, Helvetica, Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

html {
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-background);
}
.h1 {
  font-size: 2rem;
  margin-bottom: 3rem;
  line-height: 1.25em;
}
p {
  color: var(--color-white);
}
a.button {
  background: var(--color-honey);
  color: var(--color-black);
  padding: 1rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}
body {
  max-width: 70rem;
  margin: 0 auto;
  overflow-x: hidden;
}
li {
  list-style: none;
}
a {
  color: currentColor;
  text-decoration: none;
}
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}
strong,
b {
  font-weight: 600;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  height: 8rem;
  transition: 300ms ease-in-out height;
  z-index: 1000;
}
.page--scrolled .header {
  height: 5rem;
  box-shadow: 0 0 0.5rem var(--color-honey);
  background: var(--color-background);
}
.header > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 70rem;
  height: 100%;

  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: 600;
  cursor: pointer;
  padding-left: 1rem;
}

.menu {
  display: flex;
}
.menu a {
  padding: 1rem;
  display: block;
}
.menu a[aria-current] {
  text-decoration: underline;
}
.main {
  padding-top: 11rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.section {
  padding: 3rem 0;
}

h1 {
  font-size: 2.5rem;
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.footer {
  padding: 4rem 1rem 4rem;
  line-height: 1.5em;
}

.footer:before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-honey);
  margin-bottom: 1.5rem;
}

.footer h2 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer ul,
.footer p {
  color: var(--color-text-grey);
}
.footer p {
  max-width: 15rem;
}
.footer a {
  color: var(--color-text);
}
.footer a:hover {
  color: var(--color-text);
}
.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  right: 1rem;
  z-index: 1001;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}
@media only screen and (min-width: 992px) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  z-index: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: var(--color-honey);
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.6);
  transition: 300ms all;
  opacity: 0;
}
.overlay.is-active {
  opacity: 1;
}
@media only screen and (min-width: 992px) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
@media only screen and (max-width: 992px) {
  .header {
    height: 5rem;
  }
  .menu {
    visibility: hidden;
    position: fixed;
    transition: 300ms all ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 100;
    background: var(--color-grey);
    top: 0;
    right: 0;
    height: 100vh;
    width: 12rem;
    margin-right: -12rem;
    box-shadow: -5px 0px 5px 0px var(--color-honey);
    padding-top: 5rem;
  }
  .menu.is-active {
    visibility: visible;
    margin-right: 0;
  }
  .menu .menu-list {
    text-align: center;
  }
  .main {
    padding-top: 8rem;
  }
  h1 {
    font-size: 2rem;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
}
.overlay.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

a,
button {
  cursor: url(../icons/bee.svg) 15 15, pointer !important;
}

.home--honeycomb {
  position: fixed;
  right: 0%;
  top: 0%;
  width: 60%;
  height: 100vh;
  z-index: -1;
}

.home--honeycomb:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    to right,
    var(--color-grey) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}

@media screen and (max-width: 992px) {
  .home--honeycomb {
    top: 5rem;
    width: 100%;
  }
  .home--honeycomb::before {
    background: rgba(25, 25, 23, 0.8);
  }
}

@media only screen and (max-width: 550px) {
  h1 {
    font-size: 1.25rem;
  }
}

.datenschutz ul li {
  color: white;
}

.datenschutz article{
  margin-bottom: 1rem;
}
