/* ESTRUCTURA GENERAL */

*{
    margin: auto;
    padding: 0;
    box-sizing: border-box;
}

body, html {
  margin: auto;
  height: 100%;
  width: 100%;
  font-family: sans-serif;
}

/* ESTRUCTURA GENERAL */


/* ********************************* CONTENIDO ************** */

main{
    padding: 0;
    margin: 0;
    position: relative;
    z-index: -4;
}

.contenedor{
    padding: 30px;
    width: 90%;
}

.mision, .vision, .historia {
    margin-top: 40px;
}

.mision h2, .vision h2 {
    color:royalblue;
}

.historia h1{
    margin-top: 100px;
    text-align: center;
    color:white;
    background: royalblue;
    padding: 20px;
}

.mision p, .vision p, .historia p{
    text-align: justify;
}

.historia-img{
    width: 100%;
    text-align: center;
}

.historia-img img{
    width: 20%;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 5px;
    background: black;
}

.historia-img h6{
    margin-bottom: 20px;
}


/* ********************* CONTENIDO ************************ */




/* RESPONSIVE DESIGN -- media screen and (max-width: 520px) and (min-width: 480px) */

@media only screen and (min-width : 250px) and (max-width : 480px)
	{
        
/*** CONTENIDO ***/
        /*---------------------*/
     .historia-img img{
        width: 100%;
    }   

        
        /*---------------------*/

/********** CONTENIDO ***/        
}
        
       