@charset "utf-8";

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

}

body {
    display: flex;
    flex-direction: column;
    
    font-family: "poppins";
    min-height:100vh;
    min-height: -webkit-fill-available;
    
    justify-content: space-between;
    
}

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

img {
    max-height: 100%;
    height: auto;
    margin: 1em;

}


#nombre {
    
    font-size: 2.5em;
    color: white;
    padding: .5em;
    padding-top: 1em;
}

#comision {
    font-size: 1.5em;
    color: lightsteelblue;
    
}



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




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



.contenedor {
    display: flex;
    max-width: 50em;
    margin: auto;
    flex-direction: column; 
    }



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



.contenedor ul li {
    display: flex;
    width: 8em;
    height: 2em;
    margin-right: .5em;
    margin-left: .5em;
    margin-bottom: 1em;
  
}

.contenedor ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 1em;
    background-color:lightsteelblue;
    color: darkslateblue;
    font-weight: 700;
    
}





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

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

#portfolio {
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-style: double;
    margin-bottom: 1.7;
    
}

main h4 {
    
    margin-top: 1.2em;
    font-size: 1.3em
}



main article ul{
    list-style: none;
}

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


#dgpc {
    display: flex;
    flex-direction: column;
    
}

#dgpc h2 {
    color: darkslateblue;
    padding-top: 1.5em;

}

#dgpc div {
    padding: .5em
    
}
#dgpc div ul li {
    margin: .4em;
    font-size: 1.2em;   
}


#disenoui {
    padding: 1.2em;
}

#disenoui a {
    background-color: darkslateblue; 
    padding: 1em;
    color: white;
    border-radius: 2em;
    font-weight: 600;
    
    
}


#companeras{
    
    padding: 1em
}
#companeras li a {
    
    color: darkslateblue;
    font-size: 1.2em;
    font-weight: 500;
    text-decoration: underline;
    
    
}





footer {
    font-size: 1em;
    color: white;
    padding-left: 10%;
    padding-right: 10%;
    
}
