body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #020617;
}

.animated-text {
    font-size: 50px;
    font-family: Arial, sans-serif;
    color: white;
    letter-spacing: 3px;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #38bdf8;
    }

    to {
        text-shadow: 0 0 25px #22d3ee;
    }
}