* {
    box-sizing: border-box;
    font-family: "Roboto Mono", Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    cursor: none;
}



@font-face {
    font-family: Überschrift;
    src: url(SUPER_KINDLY.ttf);
}

nav {
  width: 100%;
  padding: 2.5rem 0;
  background-color: #003435;
  color: #E9FDFD;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  position: fixed;
  transition: background-color 1s ease, color 1s ease;
}

.nav-list {
  list-style: none;
  display: flex;
  /* gap: 2rem; */
  margin: 0;
  padding: 0;
  font-weight: 900;
}

.nav-list li {
  padding: 0.5rem 1.2vw;
}



.nav-list a:not(.active) {
  filter: blur(2px);
  opacity: 0.5;
  transition: filter 0.3s, opacity 0.3s;
}

.nav-list a:not(.active):hover {
  filter: none;
  opacity: 1;
}

.nav-list li a {
  text-decoration: none;
  color: #E9FDFD;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.nav-list li a.active,
.nav-list li a:hover {
  text-decoration: underline;
}

/* Kontrast-Variante1 WICHTIG */
.nav--contrasting {
  background-color: #E9FDFD;
  color: #003435;
}

.nav--contrasting #logo {
  filter: none;
}

.nav--contrasting .nav-list li a {
  color: #003435;
  filter: none;
  opacity: 1;
}

.nav--contrasting .nav-list a:not(.active) {
  opacity: 0.9;
}

nav>a {
  color: inherit;
  text-decoration: none;
}

.slash {
  color: #003435(0, 0%, 22%);
  filter: blur(1px);
}

h1 {
    font-family: Überschrift, "Roboto Mono", Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 0.85;
    text-align: center;
    cursor: none;
    user-select: none;
}
main{
   cursor: none;

}
section {
    position: relative;
    width: 100vw;
    height: 100svh;
    overflow: hidden;
    cursor: none;
}

.sticky-text-1,
.sticky-text-3, 
.sticky-text-5,
.sticky-text-7{
    background-color: #003435;
    color: #E9FDFD;
}

.sticky-text-2,
 .sticky-text-4,
 .sticky-text-6,
 .sticky-text-8{
    background-color: #E9FDFD;
    color: #003435;

}



.text_text-effekt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.text_text-effekt h1 {
    position: relative;
    left: -0.035em;
    letter-spacing: -0.05em;
    transform-origin: 50% 0%;
    transform: scale(0);
}


.sticky-text-4 .text_text-effekt h1 , .sticky-text-3 .text_text-effekt h1 , .sticky-text-2 .text_text-effekt h1, .sticky-text-1 .text_text-effekt h1,
.sticky-text-5 .text_text-effekt h1 , .sticky-text-6 .text_text-effekt h1 , .sticky-text-7 .text_text-effekt h1, .sticky-text-8 .text_text-effekt h1 {
    font-size: 35vw;
}


@media(max-width: 1000px){
    h1 {
        font-size: 3rem;
    }
}
html::-webkit-scrollbar {
  display: none;
}

body .cursor {
    pointer-events: none;
}
body .cursor__ball {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    transform: translate(0%, -30%) scale(2);
    z-index: 10000;
    pointer-events: none;
    transition: transform 0.12s linear;
    
  /* filter: grayscale(100%); */

}
body .cursor__ball.hover {
    transform: translate(+100%, +100%) scale(5);
    mix-blend-mode: difference;
}
body .cursor__ball svg {
    width: 100%;
    height: 100%;
    display: block;
}
body .cursor__ball circle {
    fill: var(--cursor-fill, #f7f8fa);
    transition: fill 0.12s linear;
}