:root {
  font-family: 'Graduate'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
}

body {
  background-color: #f9461c;
  margin: 0;
  padding: 0;
  overflow: hidden;
}


#gridcontainer {
  display: grid;
  height: 100vh;
  width: 100vw;
  grid-template-columns: 1fr 3fr 3fr 3fr 1fr;
  grid-template-rows: 1fr 3fr 3fr 3fr 1fr;
  justify-items: center; 
  align-items: center; 
  position: absolute;
}

.textcontainer {
  display: flex;
  justify-content: center; 
  align-items: center;
  position: relative;
}


.gross {
  color: #f9e300;
  font-size: 50vh;
  line-height: 0vw;
  margin: 0;
  text-align: center;
  position: absolute;
  animation-name: anigross;
  animation-duration: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes anigross {
  0% {font-variation-settings: "XOPQ" 100, "XTRA" 400, "OPSZ" 16, "GRAD" 0, "YTRA" 750, "CNTR" 0,
    "YOPQ" 100, "SERF" 0, "YTAS" 0, "YTLC" 650, "YTDE" 0, "SELE" 0;}
  100% {font-variation-settings: "XOPQ" 900, "XTRA" 400, "OPSZ" 16, "GRAD" 20, "YTRA" 750, "CNTR" 100,
    "YOPQ" 100, "SERF" 0, "YTAS" 0, "YTLC" 650, "YTDE" 0, "SELE" 0;}
}

.klein {
  color: #00a1de;
  font-size: 5vh;
  line-height: 0vw;
  margin: 0;
  text-align: center;
  position: absolute;
  animation-name: aniklein;
  animation-duration: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes aniklein {
  0% {font-variation-settings: "XOPQ" 100, "XTRA" 400, "OPSZ" 16, "GRAD" 0, "YTRA" 750, "CNTR" 0,
    "YOPQ" 100, "SERF" 0, "YTAS" 0, "YTLC" 650, "YTDE" 0, "SELE" 0;}
  100% {font-variation-settings: "XOPQ" 100, "XTRA" 400, "OPSZ" 16, "GRAD" 0, "YTRA" 750, "CNTR" 0,
    "YOPQ" 800, "SERF" 0, "YTAS" 0, "YTLC" 650, "YTDE" 0, "SELE" 0;}
}