:root {
  font-size: 100%;
  font-family: 'Whoa Spine Trial'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}

body {
  background-color: rgb(2, 2, 2);
  height: 100vh;
  display: grid;
  justify-content: center;
  align-items: center;
}

h1 {
  color: rgb(255, 255, 255);
  animation: my-super-weight 3s infinite alternate;
  font-size: 35rem;
  line-height: 0.5;
  font-weight: 100;
  margin: auto;
  white-space: nowrap; 
  display: inline-block;
}



/* Animation */

@keyframes my-super-weight {
  from { font-variation-settings: "hrzn" 0, "vert" 0, "rota" 0, "zoom" -1000; }
  to { font-variation-settings: "hrzn" 0, "vert" 0, "rota" 0, "zoom" 1000; }
}



/* Farben */

.color-red
{color: rgb(219, 68, 55);
}

.color-yellow
{color: rgb(244, 180, 0);
}

.color-green
{color: rgb(15 , 157, 88);
}



/* Super Grid */

.wrapper {
  background-color: rgb(0, 0, 0);
  display: grid;
  grid-template-columns: 1fr;
}

.item1 {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 Spalten */
  grid-template-rows: repeat(8, 1fr); /* 4 Reihen */
  height: 94vh;
  width: 100%;
}

.item-container {
  display: flex;
  justify-content: center;
  height: 6vh;
  gap: 10rem;
}

.item2, .item3, .item4 {
  position: relative;
  align-content: top;
  justify-self: center;
}

/* Buttons */

.button {
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(255, 255, 255);
  background-color: transparent;
  border: none;
}

.button-link {
  text-decoration: none;
  color: inherit;
}

.button-link:hover {
  color: rgb(66, 133, 244);
}