body {
  background-color: #444444;
}

.flex {
  min-height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box {
  height: 100%;
  font-size: 4em;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  color: #444444;
}
.box span {
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  animation: loading 1.5s ease-in-out infinite alternate;
}
@keyframes loading {
  to {
    text-shadow: 0 0 15px black;
  }
}
.box span:nth-child(2) {
  animation-delay: 0.15s;
}
.box span:nth-child(3) {
  animation-delay: 0.3s;
}
.box span:nth-child(4) {
  animation-delay: 0.45s;
}
.box span:nth-child(5) {
  animation-delay: 0.6s;
}
.box span:nth-child(6) {
  animation-delay: 0.75s;
}
.box span:nth-child(7) {
  animation-delay: 0.9s;
}
.box span:nth-child(8) {
  animation-delay: 1.05s;
}
.box span:nth-child(9) {
  animation-delay: 1.2s;
}
.box span:nth-child(10) {
  animation-delay: 1.35s;
}

@media screen and (max-device-width: 640px) {
  .box {
    font-size: 2em;
  }
}/*# sourceMappingURL=main.css.map */