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

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

.text {
  font-family: Handjet;
  font-variation-settings: "wght" 400, "ELGR" 2, "ELSH" 3;
  font-size: 24rem;
  animation: flicker 10s infinite linear,
    text-animation 2s infinite ease-in-out alternate;
  filter: blur(1px);
}

@keyframes text-animation {
  from {
  }
  to {
    font-variation-settings: "wght" 100, "ELGR" 2, "ELSH" 7;
  }
}

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

.digital-background {
  height: 100vh;
  width: 100%;
  position: absolute;
  mix-blend-mode: multiply;
  opacity: 0.5;
  background-image: url("./martin-good-39/img/digital_bg.jpg");
  background-size: cover;
}

@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;
  }
}
