body {
  background: linear-gradient(
    -45deg,
    #eeff99,
    #b4faa9,
    #7af1c0,
    #3ee4d8,
    #00d4ea,
    #00c7ef,
    #00b9f1,
    #24aaef,
    #1a9ded,
    #2490ea,
    #3781e5,
    #4b72dd
  );
  background-size: 400% 400%;
  animation: body-gradient 30s ease-in-out infinite alternate;
  height: 100vh;
  overflow: hidden;
}

@keyframes body-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.wrapper {
  color: var(--white);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo {
  font-family: Whoa-Spine;
  font-variation-settings: "hrzn" 1, "vert" 1, "rota" 0, "zoom" 0;
  font-size: 1000rem;
  box-sizing: border-box;
  transform: scale(1.5) rotate(45deg);
  filter: blur(1px);
}

.grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: letter-animation 2s infinite alternate ease-in-out;
  animation-delay: calc(1s * var(--i));
  transform-origin: center;
  position: absolute;
  transform: translate(-50%, -50%) translateX(100px);
}

@keyframes letter-animation {
  from {
    font-variation-settings: "hrzn" 1, "vert" 1, "rota" 0, "zoom" 0;
  }
  to {
    font-variation-settings: "hrzn" 10, "vert" 10, "rota" 15, "zoom" 20;
  }
}
