    /* Style the video container to cover the entire viewport */
    .video-container {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
    }
    
    /* Style the video to cover the entire container */
    video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }