body {
  background-image: url('/static/cactus background.png');
  background-position: right top;
  background-repeat: repeat-y;
  overflow-x: hidden;
  color: white;
  /* Fucking hell, ich will was sehen */
  margin: 0px;
  background-color: rgba(43, 38, 58, 1);
  display: flex;
  flex-direction: column;
  align-items: center;

}

a,
a:active {
  color: #8f96a3;
  /* Fucking hell, ich will was sehen */

}
a:hover {
    text-decoration: none;
}

.topbanner {
  z-index: 67;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 2rem;
  box-sizing: border-box;
  background-size: cover;
  background-position: center center;
}

.topbanner-logo {
  width: 100%;
}

.topbanner-logo-a {
  width: 40%;
  margin-top: 3rem;
}

.topbanner-text {
  color: white;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  font-size: 2rem;
  font-weight: 200;
  text-shadow: 0px 0px 50px #be89ff;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.topbanner-text_highlight {
  background: linear-gradient(to right, rgb(145, 202, 255), rgb(232, 114, 255));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

@keyframes topbanner-blink {
  0% {
    opacity: 1.0;
  }
  50% {
    opacity: 0.0;
  }
  100% {
    opacity: 1.0;
  }
}

.topbanner-text_cursor {
  animation: topbanner-blink .5s infinite;
}


@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(static/fonts/Noto_Sans/NotoSans-VariableFont_wdth,wght.ttf);
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 400;
  src: url(static/fonts/Karla/Karla-VariableFont_wght.ttf);
}

h1, h2, h3, h4, h5 {
  color: #e87524;
}