@charset "utf-8";

/*reglas generales*/

*{
    box-sizing: border-box;
    text-decoration: none;
    margin: 0;
    padding: 0;
    border: 0; 
    font-family: 'Rubik', sans-serif;
    
}

body{
    background-color: #FFFFFF; 
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;    
    
}



header {
    background: crimson;
    padding: 1rem;  
    
  
}

header nav ul {
    /* caja flexible */
    display: flex;
    /* elementos que no caben van a otra linea */
    flex-wrap: wrap;
    /* "hijos" centrados en la horizontal */
    justify-content: center;
    
}

header nav ul li {
    min-width: 20em;
    margin: .25em .25em .25em .25em;
}


header nav ul li a {
    display: block;
    padding: .25em .5em;
    color: black;
    text-align: center;
    }

ul,
ol {
    list-style: none;
}

ol li a{
    color: black;
}

.integrantes ol {
    /* caja flexible */
    display: flex;
    
    /* si los "hijos" no caben,
        van a la línea siguiente */
    flex-wrap: wrap;
    
    /* "hijos" centrados en la horizontal */
    justify-content: center;
    
}

.integrantes img {
    border: solid .1em;
    width: 100px;
    border-color: crimson;   
}


.integrantes ol li { margin: 0.80em; }

.integrantes ol li > * {
    display: block;
    text-align: center;
    margin: auto;
}

.integrantes ol li a {
    border-radius: .25rem;
    color:black;
    margin-top: .25rem;
    font-size: 1.25em;
    font-weight: bold;
    line-height: 1.25em;
}

.integrantes ol li a:hover {
    color: white;
    background-color:crimson;
    
    }



h1 {
    margin-bottom: 20px;
    margin-top: 20px;
    background:  #D5D0D0;
    padding: 8px;
    text-align: center;
    margin-left: 35px;
    margin-right: 35px;
}


.objetivos h2 {
    background:  #D5D0D0;
    padding: 8px;
      margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    margin-left: 35px;
    margin-right: 35px;
}
.integrantes h2 {
    background:  #D5D0D0;
    padding: 8px;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    margin-left: 35px;
    margin-right: 35px;
}

.datosacademicos h2 {
    background:  #D5D0D0;
    padding: 8px;
      margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    margin-left: 35px;
    margin-right: 35px;
}

.cajatexto{
    text-align: center;
    margin-left: 60px;
    margin-right: 60px;
}


    
.logomuseo img {
    width: 40%;
    margin-left: 30%;   
}


.datosacademicos > ul > li {
    /* caja flexible */
    display: flex;
    
    /* si los elementos no caben, van a la siguiente línea */
    flex-wrap: wrap;
    
 /* "hijos" centrados en la horizontal */
    justify-content: center;   
    
}


.datosacademicos img {
    width: 13em;
}

.datosacademicos > ul > li{
    margin:3em;
    
}


.mapa img {
    width: 100%;
   
    
    
}
.equipo img{
    width: 70%;
    margin-left: 15%
   
    
}

.plan img {
    width: 70%;
        margin-left: 15%;
    margin-top: 3em;
    margin-bottom: 2em;
    
    
}

.plan p {
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 2em;
    margin-top: 2em;
    
    
}

footer {
    padding: 1rem;
    background-color:crimson;

  }


