/* Hello bitches. */

body {
background: linear-gradient(#f3a6c9 0%, #94cfee 50%, #f3a6c9 95%);
color: white;
min-height: 100vh;
}


@font-face {
    font-family: 'apoc-darkitalic';
    src: url('Apoc-DarkItalic.woff') format('woff2'),
         url('Apoc-DarkItalic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


h1 {
	font-size: 250%;
	font-family: apoc-darkitalic;
	margin-bottom: 0;
}

p {
  font-weight: 600;
  font-style: normal;
  font-size: 180%;
  font-family: neue-haas-grotesk-display, sans-serif;
  line-height: 120%;
}


/* Link Datenschutz */

.datentext {
  position: fixed;
  top: 90%;
  right: 0%;
  float: right;
  clear: right;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 600;
  font-size: 100%;
  transform: rotate(90deg);
  z-index: 11;
}



/* Container Text */

.containermain {
  top: 25%;
  left: 33%;
  position: fixed;
  z-index: 2;
}

.containermaintext {
  top: 10%;
  left: 20%;
  width: 60%;
  z-index: 2;
  position: absolute;
}


.rotate {
  animation: rotation 8s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}


/* Links */

a:link {
  color: inherit;
  text-decoration: none;
}

a:visited {
color: inherit;
text-decoration: none;
}

a:hover {
color: inherit;
text-decoration: underline;
}

a:active {
color: inherit;
text-decoration: underline;
}