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

}
nav { 
   border-bottom: 1px solid #ccc;
}
.a{ 
    animation: glow 1.5s infinite alternate;
}
@keyframes glow {
    0% {
      text-shadow: 0 0 1px rgb(0, 0, 255), 0 0 2px rgb(0, 42, 255), 0 0 3px rgb(17, 0, 255);
    }
    50% {
      text-shadow: 0 0 4px rgb(255, 255, 255), 0 0 5px rgb(21, 4, 255), 0 0 6px rgb(255, 0, 0);
    }
    100% {
      text-shadow: 0 0 7px rgb(0, 119, 255), 0 0 8px rgb(85, 0, 255), 0 0 9px rgb(18, 1, 56);
    }
  }
  