.underline-text {
    text-decoration: underline;
}

@keyframes glow {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.2); }
    50% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.2); }
}

.animated-link {
    display: inline-block;
    animation: glow 1s infinite ease-in-out;
}

