* {
  margin: 0;
}

body {
  color: #07080a !important;
  overflow: hidden;
  background-color: var(--white);
}

.wrapper {
  font-family: Antarctica;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.letter {
  font-size: 20rem;
  font-variation-settings: "wght" 400, "wdth" 20;
  animation: wobbly;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

.letter:hover {
  animation-play-state: paused;
  cursor: pointer;
}

@keyframes wobbly {
  0% {
  }
  50% {
    color: var(--red);
    font-variation-settings: "wght" 600, "wdth" 20;
  }
  100% {
    font-variation-settings: "wght" 400, "wdth" 20;
  }
}