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

h1 {
  font-family: "Gridlite"; /* 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(255, 97, 242);
}

/* Animation für den Scale */
@keyframes scale {
  from {
    font-variation-settings: "wght" 10, "BACK" 1, "RECT" 1, "ELSH" 1;
    transform: translate(0px, -4000px);
  }
  to {
    font-variation-settings: "wght" 900, "BACK" 1, "RECT" 1, "ELSH" 4;
    transform: translate(0px, 0px);
  }
}

/* Animation für die Rotation */
@keyframes rotate {
  from {
    font-variation-settings: "wght" 10, "BACK" 900, "RECT" 1, "ELSH" 1;
    transform: rotate(0deg)  translate (0);
   
  }
  40% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(180deg);
  }
  100% {
    font-variation-settings: "wght" 900, "BACK" 1, "RECT" 1, "ELSH" 4;
    transform: rotate(180deg);
  }
}

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

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

/* Variable-Font-anweisungen Gridlite */
/* .my-text { */
	/* font-feature-settings: "calt" 1, "liga" 1, "rlig" 1, "rvrn" 1, "kern" 1, "rclt" 1; */
	/* font-variation-settings: "wght" 1-900, "BACK" 1-900, "RECT" 1-900, "ELSH" 1-4; */
  /* font-variation-settings: "wght" 200, "BACK" 0, "RECT" 0, "ELSH" 4; */
/* } */
