body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}

.animated-text {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: bold;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ff0000, #ffff00);
    background-size: 400%;
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    animation: gradientAnimation 8s infinite linear;
}

@keyframes gradientAnimation {
    0% {
        background-position: -100% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}