﻿.animate-text {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); color: #198754; }
  50% { transform: scale(1.05); color: #0d6efd; }
  100% { transform: scale(1); color: #198754; }
}