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

.wrapper {
  font-family: Antarctica;
  display: flex;
  height: 100vh;
  width: 100%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: var(--black);
  background-color: var(--white);
}

.swiss {
  position: absolute;
  font-size: 20rem;
  font-variation-settings: "wdth" 14, "wght" 1, "ital" 0, "CNTR" 0;
  color: var(--white);
  z-index: 1;
  animation: swiss 2s infinite alternate;
}

.air {
  position: absolute;
  font-size: 20rem;
  font-variation-settings: "wdth" 30, "wght" 950, "ital" 0, "CNTR" 0;
  color: var(--red);
  letter-spacing: -10px;
  animation: air 2s infinite alternate;
}

@keyframes swiss {
  from {
  }
  to {
    font-variation-settings: "wdth" 30, "wght" 950, "ital" 0, "CNTR" 0;
    color: var(--red);
  }
}

@keyframes air {
  from {
  }
  to {
    font-variation-settings: "wdth" 14, "wght" 1, "ital" 0, "CNTR" 0;
    color: #ffffff;
    z-index: 999;
  }
}
