.wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(6, 150px);
  text-align: center;
  font-family: "cheee-variable", sans-serif;
  font-size: 4rem;
  color: red;
  align-items: center;
  justify-items: center;

}

.sugus {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateWord 4s ease-in-out infinite;
}

@keyframes rotateWord {
  0%,
  100% { 
    transform: rotate(0deg);
    font-variation-settings: "GRVT" 989, "YEST" 0;
  }
  50% {
    font-variation-settings: "GRVT" 0, "YEST" 989;
    font-size: 23rem;
  }

  100% {
    transform: rotate(360deg);
  }
}
