@import url('https://fonts.googleapis.com/css2');
@import url('https://fonts.googleapis.com/css2');

:root {
    --color : #000000
}

p {
  background: none;
  color: #000000;
  font-size: 13px;
  cursor: pointer;
}

p:hover span {
  animation: flicker 1s linear forwards;
}

p:hover #W {
  animation-delay: .2s;
}

p:hover #N2 {
  animation-delay: .4s;
}

p:hover #U {
  animation-delay: .6s;
}

p:hover #Y {
  animation-delay: .8s;
}
p:hover #H {
  animation-delay: 1s;
}
@keyframes flicker {
  0% {
    color: #333;
  }
  5%, 15%, 25%, 30%, 100% {
    color: #fff;
    text-shadow: 
      0px 0px 5px var(--color),
      0px 0px 10px var(--color),
      0px 0px 20px var(--color),
      0px 0px 50px var(--color);
      
  }
  10%, 20% {
    color: #333;
    text-shadow: none;
  }
}
body{
    opacity:1
}