body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: auto;
}

/* Estilos para las secciones */
.section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    text-align: center;
    background-color: #333; /* Cambiamos el fondo a un tono más claro */
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    color: white; /* Color de texto blanco */
}

/* Estilos para el texto de las listas */
.column ul {
    text-align: left;
    padding-left: 20px;
    color: white; /* Color de texto blanco */
}

.column ul li {
    margin-bottom: 10px;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

header {
    text-align: center;
    padding: 20px 0;
}

header h1 {
    color: rgb(39, 2, 2);
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.video-container {
    margin-bottom: 20px;
}

.section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    text-align: center;
}

.column img {
    max-width: 100%;
    height: auto;
}

.links {
    display: flex;
    justify-content: center;
}

.links a {
    margin: 0 10px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}