*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}
body {
    background-color: #169D53;
    box-sizing: border-box;
}
div, footer, main, section, header, nav, ul, h1, h2, img, p {
    box-sizing: border-box;
}
/* imagen superior */
.contenido-imagen-formato img{
    width: 100%;
    height: 700px;
}
/* barra de navegacion */
.contenido {
    position: sticky; /*deja estatico el encabezado elegido*/
    top: 60px;
    border-bottom: 2px solid rgb(70, 69, 69);
    z-index: 20; /*para que el encabezado se coloque encima de otros*/
    background-color: rgb(11, 126, 63);
}
.contenido__flex {
    display: flex;
    justify-content: center;
    text-align: center;
}
.contenido__flex-listas {
    flex-grow: 1;   /*Propiedad que solo se puede otorgar al hijo directo de un contenedor flex*/
    height: 70px;
    display: flex;
    justify-content: center;
    padding-inline: 250px;
}
.contenido__flex-listas ul{
    flex-grow: 1;
    display: flex;
    gap: 30px; /*separacion entre elementos y hijos directos*/
    justify-content: center;
    align-items: center;
}
.contenido__flex-listas ul li {
    display: flex;
    align-items: center;
    flex-grow: 1;
    height: 100%;
}
.contenido__flex-listas ul li a{
    color: #020202;
    opacity: .7;
    transition: opacity .2s ease-in-out; /*estilo de transicion*/
    font-size: 20px;
    font-weight: bold; /*hace negrito las letras en la lista*/
}
.contenido__flex-listas ul li a:hover{
    opacity: 1.1;
}
/*contenido*/
.informacion-flex {
    display: flex;
    border-top: 2px solid rgb(70, 69, 69);
    position: relative; /**/
}
.informacion-flex-vacio {
    background-color: black;
    width: 100px;
    height: 300px;
    margin-top: 70px;
}
.informacion-flex-vacio-dos {
    background-color: black;
    width: 300px;
    height: 300px;
    margin-top: 70px;
}
.informacion-flex-texto {
    margin-top: 40px;
    padding: 40px;
}
.informacion-flex-texto h3{
    margin-top: 20px;
    text-align: justify;
    font-size: 30px;
}
.informacion-flex-texto h4{
    margin-top: 20px;
    text-align: justify;
    opacity: .6;
    margin-left: 10px;
    font-size: 20px;
}
.informacion-flex-texto p{
    padding: 20px;
    text-align: justify;
}
.informacion-flex-texto-info h5{
    font-size: 20px;
    margin-left: 15px;
}
.informacion-flex-imagen img {
    margin: 40px; 
    width: 900px;
    height: 400px;
    border-radius: 15px;
}
.header-list a:hover {
    background: #000;
    color: var(--lightyellow);
    transform: scale(1.05);
    transition: .3s ease-in;
    border: transparent;
}
  /*subtitulos*/
.bg-flex {
    display: flex;
}
.content {
    position: relative;
    align-items: center;
}
.content a{
    color: #c55e09;
}
.content-txt {
    position: absolute;
    top: 20px;
    text-align: center;
    padding: 15px;
    left: 200px;
}

.content-flex {
    display: flex;
    gap: 50px;
}
.content img{
    width: 800px;
    height: 500px;
    border-radius: 15px;
}
.content-mayor {
    margin: 100px;
}