@charset "UTF-8";
/* GENERALES */

body {
    background-color: #fffeeb;
    color: #4a4a4a;
    display: flex;
    flex-direction: column;
} 
main{
    max-width: 100%;
    margin: 0 auto;
}

ul, ol{
    list-style-type: none;
    padding-left: 10px;
}

ul li, ol li{
    margin-bottom: 5px;

}
img{
    max-height: 100%;   
} 

/* TYPE */
h1 {
   font-size: 3em; 
}


.link-bold{
    font-weight: bold;
    color: #fd953c;
    text-decoration: none;
}

/* HEADER */

header{
    text-align: center;
    width: 100%;
    background-color: #222222;

    
    
}
nav{
    padding: 15px 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    
    
}
header a{
    color: white;
    margin: 0 15px;
    font-weight: bold;
    text-decoration: none;
}

/* PRESENTACION */
.presentacion{
    margin-bottom: 40px;
    padding: 20px 40px;
    display: flex;
    flex-wrap: wrap; 
    background-color:  black;
    align-content: center;
    flex-direction: column-reverse;

    
}
.image{
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;

}

.texto{
    width: 100%;
    color: beige;
    display: flex;
    flex-direction: column;
    
}

/* CONTENIDO */


ol li a{
    text-decoration: none;
    color: #60707B;  
} 

.equipo ol li{
    display: flex;
    justify-content: center;
    


}

.materias{
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    
    
    
    
}

.materias div{
    max-width:20%;
    padding: 40px;


/* FOOTER */
footer{
    padding: 20px 0px;
    text-align: center;
}

footer a{
    margin: 10px 0px;
    font-size: 14px;
    color: #a2a2a2;
    text-align: center;
}