#typing-text {
  font-family: 'Fira Code', monospace;
  color: #facc15;
  font-size: 2rem; /* ajusta tamaño */
  text-shadow:
    2px 2px 0 #ff00cc,
    -2px -2px 0 #a855f7,
    0 0 10px #facc15,
    0 0 20px #facc15;
  letter-spacing: 0.1em;
  animation: flicker 0.15s infinite alternate;
}

@keyframes flicker {
  from {
    opacity: 1;
    transform: translate(0px, 0px);
  }
  to {
    opacity: 0.9;
    transform: translate(1px, -1px);
  }
}