  body { 

    background-color: white;
        animation-name: backgroundColorPalette;
        animation-duration: 3s;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-timing-function: linear; 

  color: black;
  font-family: Times New Roman, serif;
  font-weight: normal; 
  letter-spacing: 1px;
  font-size: 14pt;
  text-align: justify;
  line-height: 200%;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin: 0;
  padding: 0;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  }

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

  .titel {
  white-space:nowrap; 
  text-align:center;
  text-indent: 0px;
  color: white;
  background-color: black;
  margin-bottom:1em;
  }

  .menue {
  text-align:center; 
  text-indent: 0px;
  white-space:nowrap;
  text-transform: uppercase;
  font-size: 11pt;
  font-weight: bold;
  font-family: Arial, sans-serif;
  }

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

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

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

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

  a.menuelink {
  text-shadow: none;
  }

  a.menuelink:link, a.menue:visited {

  }

  a.menuelink:hover, a:active {
  text-decoration:underline;
  }

  a.aktiv {
  text-decoration:underline;
  text-shadow: none;
  }

      @keyframes backgroundColorPalette {
      0% {background: #ffffff;
        transition-property: background-color;}

      3% {background: #b7e5f3;
        transition-property: background-color;}

      6% {background: #e2cee9;
        transition-property: background-color;}

      9% {background: #a2d9ce;
        transition-property: background-color;}

      100% {background: #ffffff;
        transition-property: background-color;}
      }