/* Restablece los márgenes y rellenos por defecto */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Evita barras de desplazamiento */
    /* Aplica la fuente Miso a todo el cuerpo del documento */
    font-family: 'Miso', sans-serif;
}

.roboto-<uniquifier> {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Envía el video al fondo */
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centra el video */
    object-fit: cover; /* Asegura que el video cubra todo el espacio sin distorsionarse */
}

.content-overlay {
    position: relative;
    z-index: 1; /* Coloca el contenido encima del video */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff; /* Color del texto para que se vea sobre el video */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Sombra para mejor legibilidad */
    text-align: center;
    padding: 20px;
    box-sizing: border-box; /* Incluye padding en el ancho y alto */
}

h1 {
    font-size: 3rem; /* Ajusta el tamaño de la fuente para el título */
}