#welcome-text {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff; /* Make the text itself white */
  text-align: center;
  margin: 20px 0 10px 0;
  /* Pink glows around white text */
  text-shadow:
    0 0 8px #f81775,
    0 0 16px #f81775,
    0 0 24px #f81775,
    0 0 32px #f81775;
  animation: jump 1s infinite alternate, pink-glow 2s infinite alternate;
  background: none;
}

@keyframes jump {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px) scale(1.04); }
  100% { transform: translateY(0); }
}

@keyframes pink-glow {
  0%   { text-shadow:
    0 0 8px #f81775,
    0 0 16px #f81775,
    0 0 24px #f81775,
    0 0 32px #f81775;
  }
  100% { text-shadow:
    0 0 16px #f81775,
    0 0 32px #f81775,
    0 0 48px #f81775,
    0 0 64px #f81775;
  }
}