@font-face {
  font-family: 'UTMorph-variable';
  src: url('fonts/UTMorph-variable.woff2') format('woff2');
}


html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: red;
}

.wrapper {
  display: grid;
  grid-template-columns:  12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% ;
  text-align: center;
  grid-template-rows: 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px;
  font-family: "cheee-variable", sans-serif;
  font-size: 3.5rem;
  animation: line1 4s infinite linear;
  color:red;
  transition: color 0.5s ease; 

  align-items: center;
  justify-items: center; 
}

.wrapper div {
  opacity: 0; /* Anfangszustand: Unsichtbar */
  transition: opacity 0.5s ease;
}

.wrapper div:hover {
  color: white; 
  opacity: 1;
  z-index: 10;
}

@keyframes line1 {
    0%, 100% {
      font-variation-settings: "GRVT" 989, "YEST" 0;
    }
    50% {
      font-variation-settings: "GRVT" 0, "YEST" 989;
      font-size: 8rem;
      animation-delay: 1s;
    }
}


