html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff; 
}

.gradient-heading {
    font-size: 4rem;
    font-family: 'Courier New', Courier, monospace;
    background: linear-gradient(90deg, #CCFF00, #BC13FE, #FE019A, #CCFF00);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: gradientAnimation 5s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}
h1, p {
    text-align: center;
}

p {
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
}

.round-video {
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 50%;
    margin: 30px 0 30px 0;
}

.round-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pink {
    color: #FE019A;
}

.lila {
    color: #BC13FE;
}

@media (max-width: 580px) {
    .gradient-heading {
        font-size: 3rem;
    }
    p {
        font-size: 0.875rem;
    }
    .round-video {
        width: 200px;
        height: 200px;
    }
}