        .video-container {
            position: relative;
            width: 95%; /* Cambia este valor por el porcentaje deseado (por ejemplo, 60%, 100%, etc.) */
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            margin: auto; /* Centra el video */
        }

            .video-container iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: none;
            }
