/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


:root {
  font-size: 4000%;
  /* text-transform: uppercase; */
  background-image: radial-gradient(rgb(225, 0, 255), rgb(255, 200, 0), rgb(96, 255, 186));
  background-size:cover;
}

h1 {
  font-family: "WHOA-Spine"; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
  color:rgb(255, 255, 255);
  animation: scale 8s ease-in-out infinite alternate;
}

/* Styling für den rotierenden Text */
.rotating-text {
  display: inline-block;
  color:rgb(0, 0, 0);
}

/* Animation für den Scale */
@keyframes scale {
  from {
    font-variation-settings: "hrzn" -1000, "vert" -1000, "rota" 0, "zoom" -1000;
    letter-spacing: -100px;
  }
  to {
    font-variation-settings: "hrzn" 1000, "vert" 1000, "rota" 0, "zoom" 1000;
    letter-spacing: -100px;
  }
}

/* Animation für die Rotation */
@keyframes rotate {
  from {
    font-variation-settings: "hrzn" -1000, "vert" -1000, "rota" 0, "zoom" -1000;
    transform: rotate(0deg);
    letter-spacing: -10px;
  }
  40% {
    /* font-variation-settings: "hrzn" -1000, "vert" -1000, "rota" 0, "zoom" -1000; */
    transform: rotate(0deg);
    letter-spacing: -100px;
  }
  60% {
    /* font-variation-settings: "hrzn" 1000, "vert" 1000, "rota" 0, "zoom" 1000; */
    transform: rotate(180deg);
    letter-spacing: -700px;
  }
  100% {
    font-variation-settings: "hrzn" 1000, "vert" 1000, "rota" 0, "zoom" 1000;
    transform: rotate(180deg);
    letter-spacing: -300px;
  }
}

/* Dreh-Animation anwenden */
.rotating-text {
  animation: rotate 8s ease-in-out infinite alternate; 
}

#container {
  display:grid;
  grid-template-columns: repeat(1, 500px);
  grid-template-rows: repeat(1, 1000px);
  justify-items: left;
  grid-auto-flow: column; 
  align-items: center;
  gap: 0px; /* Abstand zwischen den Zeilen */
}


