@keyframes float { 0% { transform: translateY(0); text-shadow: none; color: #ff0000; } 50% { transform: translateY(-10px); text-shadow: 0 0 10px #000000; color: #ff0000; } 100% { transform: translateY(0); text-shadow: none; color: #ffff00; } } @keyframes dissolve { 0% { opacity: 1; color: #ff0000; } 80% { opacity: 0; color: #00ff00; } 100% { display: none; } } .float-glow-text { animation: float 5s ease-in-out infinite, dissolve 3s ease-out forwards 8s; }
To View PDFs Chrome Browser Recommended