* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    overflow: hidden; /* Evita barras de desplazamiento */
}

.back-video {
    
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    z-index: -1; /* Pone el video detrás del contenido */
    object-fit: cover; /* Asegura que el video cubra todo sin deformarse */
}

.content {
    position: relative;
    z-index: 1; /* Asegura que el texto esté al frente */
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}