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

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

.strip {
  display: flex;
}

.frame {
  position: absolute;
  width: 100%;
  height: 680px;
  border-bottom: 20px solid var(--red);
  border-top: 20px solid var(--red);
  filter: blur(1px);
}

.text {
  font-family: Handjet;
  font-variation-settings: "wght" 400, "ELGR" 2, "ELSH" 3;
  font-size: 34rem;
  display: flex;
  width: 9000px;
  animation: font-animation-1 30s infinite linear, flicker 40ms infinite linear;
  transform: translateX(5500px);
  filter: blur(1px);
  opacity: 0.7;
}

.glow {
  color: var(--white);
}

@keyframes flicker {
  0%,
  18%,
  22%,
  25%,
  53%,
  57%,
  100% {
    text-shadow: rgba(255, 255, 255, 0.3) 0px 0px 50px,
      rgba(255, 255, 255, 0.2) 0px 0px 200px;
  }

  20%,
  24%,
  55% {
    text-shadow: none;
  }
}

@keyframes font-animation-1 {
  form {
    transform: translateX(0px);
  }
  to {
    font-variation-settings: "wght" 400, "ELGR" 2, "ELSH" 3;
    transform: translateX(-4000px);
  }
}
