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

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

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