body {
  overflow: hidden;
  background-color: var(--white);
}

.wrapper {
  font-family: Stardust;
  color: var(--black);
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  text-transform: uppercase;
  line-height: 3rem;
}

.center {
  font-variation-settings: "wdth" 100, "wght" 400, "ital" 1;
  color: var(--red);
}

.center-1 {
  font-variation-settings: "wdth" 110, "wght" 500, "ital" 3;
}

.center-2 {
  font-variation-settings: "wdth" 120, "wght" 600, "ital" 6;
}

.center-3 {
  font-variation-settings: "wdth" 130, "wght" 700, "ital" 9;
}

.center-4 {
  font-variation-settings: "wdth" 140, "wght" 800, "ital" 12;
}

.center-5 {
  font-variation-settings: "wdth" 150, "wght" 800, "ital" 15;
}

.center-6 {
  font-variation-settings: "wdth" 160, "wght" 900, "ital" 18;
}

span {
  animation: letter-animation 4s infinite ease-in-out alternate;
}

@keyframes letter-animation {
  from {
  }
  to {
    font-variation-settings: "wdth" 200, "wght" 100, "ital" 0;
  }
}
