* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: sans-serif;
  background: #000;
}

h2 {
  font-size: 6vw;
  color: #333;
  font-weight: 500;
}

h2 span {
  animation: animate 2.2s linear infinite;
}

h2 span:nth-child(1) {
  animation-delay: 0s;
}

h2 span:nth-child(2) {
  animation-delay: 0.2s;
}

h2 span:nth-child(3) {
  animation-delay: 0.4s;
}

h2 span:nth-child(4) {
  animation-delay: 0.6s;
}

h2 span:nth-child(6) {
  animation-delay: 0.8s;
}

h2 span:nth-child(7) {
  animation-delay: 1s;
}

h2 span:nth-child(8) {
  animation-delay: 1.2s;
}

h2 span:nth-child(9) {
  animation-delay: 1.4s;
}

h2 span:nth-child(10) {
  animation-delay: 1.6s;
}

h2 span:nth-child(11) {
  animation-delay: 1.8s;
}

h2 span:nth-child(12) {
  animation-delay: 2s;
}

@keyframes animate {
  0%, 80% {
    color: #333;
    text-shadow: none;
  }
  100% {
    color: #fff;
    text-shadow: 0 0 10px #fff, 0 0 20px #f20505, 0 0 40px #fff, 0 0 80px #f20505, 0 0 120px #fff, 0 0 140px #f20505, 0 0 160px #fff, 0 0 180px #f20505, 0 0 200px #fff, 0 0 220px #f20505;
  }
}/*# sourceMappingURL=style.css.map */