@charset "utf-8";

* { 
margin: 0;
padding: 0;
box-sizing: border-box;

}

body {
    display: flex;
    flex-direction: column;
    background-color: white;
    font-family: sans-serif;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    justify-content: space-between;
    
}

html {
    height: -webkit-fill-avalible;
}

img {
    max-height: 100%;
    height: auto;
}


h1 {
    color:white;
    text-align: center;
    font-size: 2.3em;
    margin: 0.5em;
}

h2 {
    color: white; 
    text-align: center;
    padding-bottom: .8em
}


header,
footer {
    background-color:#ff8d06;
    flex-grow: 0;
    padding: 2em;
    text-align: center; 
}


header {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header ul { 
    list-style: none; 
    display: flex; 
    flex-wrap: wrap;
    justify-content: center;      
}

header ul li {
    width: 10em;
    height: 2em;
    margin-left: .25em;
    margin-right: .25em;
    display: flex;
    margin: .5em   
}
    
header ul li a {
    width: 100%;
    height: 100%;
    background-color: #F9DCA2; 
    color: white;
    text-decoration: none;
    font-weight: bold;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius: .3em;
        
}


main {
    flex-grow:1;
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    text-align: center;
    padding: 2em 2em;
    
}

#presentacion {
    font-size: 1em;
    margin-bottom: 1em;
}

h3 {
    text-align: center;
    font-size:1.4em;
    color: #ff8d06;
    font-style: normal; 
    margin-bottom: .8em;
    margin-top:1.9em;
}

h4 {
    font-size: 1.2em;
    margin-top: 1.3em;
    color: #ff8d06;
}

main article ul{
    list-style: none;
}

.materias ul li {
    margin: 0.5em;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1em;
    
}

#integrantes ul {
    list-style: none;
    
}

#integrantes ul li{
    padding: .5em;
    width: 100%;
    align-content: center;
    
}

#integrantes ul li a{
    text-decoration: none;
    color: white;
    background-color: #F9DCA2;
    background-position: center;
    padding: .3em;
    display:flex;
    justify-content: center;
    
    align-content: center;
    text-align: center;
    max-width:15em;
    height: auto;
    
    border-radius: .3em;
    margin: auto;
    font-size: 1.2em;
       
}

.bocetos ul {
    list-style: none;
}

.bocetos ul li {
    padding: .5em;
    width: 100%;
    align-content: center;
}

.bocetos ul li a {
    text-decoration: none;
    color: white;
    background-color: #F9DCA2;
    background-position: center;
    padding: .3em;
    display:flex;
    justify-content: center;
    
    align-content: center;
    text-align: center;
    max-width:15em;
    height: auto;
    
    border-radius:.3em;
    margin: auto;
    font-size: 1.2em;
}

.academico {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 0 2em;
    padding-top: 2em;
    font-size: .5em;
    
}

.academico img{
    display: block;
    width: 35em;
}

.academico > div{
    margin: 0 2em;
    padding: 0.5em;    
}

.academico p{
    font-size: 1.4em;
    
}

footer {
    font-size: 1em;
    color: white;
    padding: 1.3em;
}


