

css
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}

/* Contenedor principal del fondo */
.fondo-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Lo envía al fondo */
    overflow: hidden;
}

/* Estilo para la Imagen */
.background-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Estilo para el Video */
.background-video {
    min-width: 100%; 
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Asegura que cubra todo sin estirarse */
}

/* Capa de contenido */
.content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.4); /* Oscurece un poco el fondo para leer mejor */
}
.texto-centrado {
  width: 90%;                /* 90% del ancho de la página */
  margin: 0 auto;            /* Centra el bloque horizontalmente */
  text-align: center;        /* Centra el texto dentro del bloque */
  /* Opcional: para visualizar el borde
  border: 1px solid black; */
}
h1 { font-size: 4rem; margin-bottom: 6px; }
h4 { font-size: 2rem; margin-bottom: 3px; width: 90% margin: 0 auto;}