
#video-container {
    position: relative;
    width: 100%;
    height: 65vh;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.content {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}



.scrolling-text {
    width: 100%;
    height: 25px;
    overflow: hidden;
    position: relative;
    text-emphasis-color:white
}

    .scrolling-text p {
        position: absolute;
        width: 100%;
        height: 100%;
        margin: 0;
        line-height: 25px;
        text-align: center;
        animation: scroll 30s linear infinite;
        white-space: nowrap;
    }

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.scrolling-text.paused p {
    animation-play-state: paused;
}

/* Responsive Styles */

@media screen and (max-width: 490px) {
    #video-container {
        height: 100%;
    }
}

@media screen and (max-width: 480px) {
    #video-container {
        height: 100%;
    }
}
