@keyframes mp{
    50% {opacity:0;}
}
.mp{
    animation: mp 1.5s infinite;
}

@keyframes neonGlow {
  0% { text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff; }
  50% { text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff; }
  100% { text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff; }
}
.ne {
  color: #fff;
  animation: neonGlow 2s infinite alternate;
}

@keyframes lavaLamp {
    0% {background-position:0% 0%;}
    50% {background-position:50% 100%;}
    100% {background-position:100% 50%;}
}
.lava-bg{
    background:radial-gradient(circle,#ff512f,#dd2476,#1e3c72);
    background-size:400% 400%;
    animation:lavaLamp 8s infinite alternate-reverse;
}