.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que el video cubra toda el área */
    z-index: -1; /* Envía el video al fondo */
}
.container {
    position: relative;
    width: 100%;
    height: 100vh; /* Ajusta según lo necesario */
    overflow: hidden;
}