:root {
  --fade-duration: 2000ms;
  --fade-ease: cubic-bezier(.2, .8, .2, 1);
}

/* Standard: alle Elemente starten unsichtbar */
.fade-target {
  opacity: 0;
  animation: fadeInUp var(--fade-duration) var(--fade-ease) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body { 

  color: black;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: normal; 
  letter-spacing: 1px;
  font-size: 14pt;
  text-align: justify;
  line-height: 200%;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  hyphenate-limit-chars: auto 5;
  hyphenate-limit-lines: 2;
  margin: 0;
  padding: 0;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  }

  .text {
  width: 60%;
  max-width: 750px;
  padding: 2% 20%;
  opacity: 1;
  }

  q {
  quotes: "»" "«" "›" "‹";
  }

  p {
  text-indent: 60px;
  margin-bottom:2em;
  }

  a:link, a:visited {
  color: black;
  text-shadow: 0px 0px 8px yellow;
  text-decoration:none;
  }

  a:hover, a:active {
  color: black;
  text-shadow: 0px 0px 8px deeppink;
  }

  a.menuelink {
  text-shadow: none;
  }

  a.menuelink:hover, a:active {
  text-shadow: 0px 0px 8px deeppink;
  }

  a.aktiv {
  text-shadow: 0px 0px 8px deeppink;
  }

div.email > span:nth-child(2) {
	display: none;
}