#loader{
  position: fixed;
  display: flex;
  min-height: 100vh;
  min-width: 100vw;
  background: #222;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 10000;
}
#loader div{
  display: inline-flex;
  color: #fff;
  padding: 10px;
  font-weight: 500;
  opacity: 1;
  font-size: 7.5vw;
  animation: loader 3s infinite ease-in-out;
}
@keyframes loader{
  0%,100%{
    opacity: 1;
    -webkit-text-stroke: 1px #00DFFF;
    -moz-text-stroke: 1px #00DFFF;
    -o-text-stroke: 1px #00DFFF;
    
    text-shadow: 2px 2px 10px #00DFFFaa,-2px 2px 10px #00DFFFaa,2px -2px 10px #00DFFFaa,-2px -2px 10px #00DFFFaa;
  }
  50%{
    opacity: 0;
    text-shadow: 0 0 0px #00DFFFaa;
  }
}
#loader div:nth-child(1) {
  animation-delay: -0.2s;
}
#loader div:nth-child(2){
  animation-delay: 0.0s;
}
#loader div:nth-child(3) {
  animation-delay: 0.2s;
}
#loader div:nth-child(4) {
  animation-delay: 0.4s;
}
#loader div:nth-child(5) {
  animation-delay: 0.6s;
}
#loader div:nth-child(6) {
  animation-delay: 0.8s;
}
#loader div:nth-child(7) {
  animation-delay: 1.0s;
}
#loader div:nth-child(8) {
  animation-delay: 1.2s;
}
#loader div:nth-child(9) {
  animation-delay: 1.4s;
}
#loader div:nth-child(10) {
  animation-delay: 1.6s;
}