@import url(https://fonts.googleapis.com/css2?family=Asap:wght@400;600&display=swap);

.neon-text {
  display: inline;
  position: relative;
  top: -1px;
}

.neon-text b{
  font-family: 'Asap', sans-serif;
  font-weight: 600;
  line-height: inherit;

  color: #CBCAC9; /* gri text */

  text-shadow:
    0 0 2px rgba(255,255,255,0.08),
    0 0 6px rgba(255, 80, 80, 0.25),
    0 0 12px rgba(255, 80, 80, 0.18),
    0 1px 2px rgba(0,0,0,0.6);
}

/* BLINK */
.neon-text b span{
  animation: blink linear infinite 2s;
}

.neon-text b span:nth-of-type(2){
  animation: blink linear infinite 3s;
}

/* ANIMATION */
@keyframes blink {
  78% { color: inherit; text-shadow: inherit; }
  79% { color: #333; }
  80% { text-shadow: none; }
  81% { color: inherit; text-shadow: inherit; }
  82% { color: #333; text-shadow: none; }
  83% { color: inherit; text-shadow: inherit; }
  92% { color: #333; text-shadow: none; }
  92.5% { color: inherit; text-shadow: inherit; }
}