/* 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: 500%;
  text-transform: uppercase;
  background-image: radial-gradient(rgb(56, 56, 56), rgb(0, 0, 0));
}

h1 {
  font-family: "GT-Flexa-VF"; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
  color: rgb(255, 255, 255);
  animation: my-growth 8s ease-in-out infinite alternate;
  line-height: 0.8;
  position: relative;
  margin-right:-15px;
}

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

@keyframes my-growth {
  from {
    font-variation-settings: "wdth" 25, "wght" 100;
    letter-spacing: 0px;
}

  to {
    font-variation-settings: "wdth" 200, "wght" 100;
    letter-spacing: -20px;
  }
}


/* Animation für die Rotation */
@keyframes rotate {
  from {
    translate: 10px -1px;
    transform: rotate(0deg);
    font-variation-settings: "wdth" 25, "wght" 100;
  }
  30% {
    translate: 12px -1px;
    transform: rotate(0deg);
  }
  60% {
    translate: 10px -6px;
    transform: rotate(180deg);
  }
  to {
    translate: 15px -6px;
    transform: rotate(180deg);
    font-variation-settings: "wdth" 200, "wght" 100;
  }
}

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

#container2 {
  display:grid;
  grid-template-columns: repeat(60, 10px);
  grid-template-rows: repeat(20, 52px);
  justify-items: top;
  grid-auto-flow: column; 
  align-items: top;
  gap: 4px; /* Abstand zwischen den Zeilen */
}

#container3 {
  position: absolute;
  top: -4px;
  right: -480px;
  transform: translate(-50%, 0%);
  display:grid;
  grid-template-columns: repeat(60, 10px);
  grid-template-rows: repeat(20, 52px);
  justify-items: top;
  grid-auto-flow: column; 
  align-items: top;
  direction:rtl;
  gap: 4px; /* Abstand zwischen den Zeilen */
}
