       .videoContainer {
            width: 100%;
            padding: 0 30px ;
            /*background-color: green;*/
            display: flex;
            justify-content: center;
        }
        
        .video {
            width: 100%;
            max-width: 1069px;
            aspect-ratio: 16/9;
            background-color: black;
            position: relative;
            border-radius:12px;
        }
        
        .video iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius:12px;
        }