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

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-top {
  font-size: 20rem;
  font-family: antarctica;
  font-variation-settings: "wdth" 113, "wght" 588, "ital" 0, "CNTR" 0;
  color: var(--red);
  position: absolute;
  animation: shadow-animation-top 2s infinite alternate ease-in-out;
  filter: blur(0.5);
}

.logo-bottom {
  font-size: 20rem;
  font-family: antarctica;
  font-variation-settings: "wdth" 113, "wght" 588, "ital" 0, "CNTR" 0;
  color: var(--black);
  position: absolute;
  z-index: -999;
  animation: shadow-animation-bottom 2s infinite alternate ease-in-out;
}

@keyframes shadow-animation-top {
  from {
  }
  to {
    font-variation-settings: "wdth" 113, "wght" 620, "ital" 0, "CNTR" 0;
    letter-spacing: 12px;
  }
}

@keyframes shadow-animation-bottom {
  from {
    opacity: 0;
  }
  to {
    font-variation-settings: "wdth" 120, "wght" 588, "ital" 0, "CNTR" 0;
    filter: blur(20px);
    transform: translate(30px, 30px);
    letter-spacing: 12px;
  }
}
