@charset "utf-8";
* {
    box-sizing: border-box;
    font-family: 'Overpass', sans-serif;
    list-style: none;
    text-decoration: none
}


body{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 100vh;
    justify-content: space-between;
    background-color: whitesmoke;
    max-width: 50rem;
    margin: 0 auto;
    padding: 1rem;
}
body header{
    /*display: none;*/
    background-color: black;
    border-radius: 1rem;
    box-shadow: 0 0.2rem .2rem .2rem rgba(0, 0, 0, 0.125);
    
}
body header nav ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-around;
    padding: 0rem;
    margin-block-start: 0em;
    margin-block-end: 0em;
    
}
body header nav ul li{
    display: flex;
}
body header nav ul li a{
    color: white;
    cursor: pointer;  
    padding:.5rem;
    margin: 0;
    
}
body header nav ul li a:hover{
    background-color: indianred;
    border-radius: 1rem;
    
}

body main{
    flex-grow: 1;

}


.integrante{
   padding: 1rem;
    font-size: 2.em;
    margin: 0em;
    text-align:center;
}
.integrante h1{
    margin: 0.3em;
    padding: 0rem;
    font-size: 2.em;
    text-align:center;

}
.integrante img{
    width:10em;
    height:10em;
    border-radius:13em;
    box-shadow: 0 .50em .5em rgba(0, 0, 0, .40);
    margin-bottom: 1em;


}

.materias{
    background-color: white;
    margin-bottom: 1em;
    border-radius: 1rem;
    padding: 1em;
    box-shadow: 0 .35em .5em rgba(0, 0, 0, .35);   
    text-align: justify;
}

h2{
    margin-top: 0em;
   
}
.materias p{
    margin-bottom: 0em;
    margin-top: 0.2em;
    text-align: justify;
    

   
}
.materias h3{
    margin-top: 0em;
    margin-bottom: 0.3em;
    font-size: 1.35em;
    color: #191818; 


    
}
.equipo{
    background-color: white;
    border-radius: 1rem;
    margin-top: 1em;
    margin-bottom: 1em;
    box-shadow: 0 .35em .5em rgba(0, 0, 0, .35)
}
.equipo article{
    padding-bottom: .2cm;
}
.equipo article div{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 1em;
    padding-left: 1em;
    padding-right: 1em;
}
.equipo article div img{
        border-radius: 50%;

}
.equipo article h3{
    margin-top: 0em;
    margin-bottom: 0;
}
.equipo article ul{
        display: flex;
        list-style: none;
        flex-direction: row;
        flex-wrap: wrap;
        padding-left: 0em;
        margin-bottom: 0em;
}
.equipo article ul li a{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    color: black;
    padding-top: .5rem;
    padding-right: 1rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
}
.equipo article ul li a:hover{
    background-color: indianred;
    border-radius: 1rem;
}
.datoscursada{
    background: white;
    border-radius: 1rem;
    padding: 1em;
    margin-bottom: 1em;
    box-shadow: 0 .2rem .2rem .2rem rgba(0, 0, 0, 0.125);
}
.datoscursada article h3{
    margin-top: 0em;
}
.datoscursada article p{
    margin-top: .5em;
    margin-bottom: .5em;
}
.datoscursada article p a{
    color: indianred
}
.datoscursada article p a:hover{
    background-color: lightgray;
    border-radius: 1rem;
}

.facultad{
    background: white;
    border-radius: 1rem;
    padding: 1em;
    margin-bottom: 1em;
    box-shadow: 0 .2rem .2rem .2rem rgba(0, 0, 0, 0.125);
    text-decoration
    
}
.facultad article h3{
    margin-top: 0em;
}
.facultad article p{
    margin-top: .5em;
    margin-bottom: .5em;
}
.facultad article p a{
    color: firebrick
}
.facultad article p a:hover{
    background-color: lightgrey;
    border-radius: 1rem;
}


footer {
    padding: 1em;
    font-size: 10pt;
    background-color:black;
    border-radius: 12px;
}
footer p{
    margin-top: 0em;
    color: whitesmoke;

    margin-bottom: 0em;
}

@media (min-width: 820px){
    body{
        
    }
}
@media (max-width: 820px) {
    header nav button {
        display: none;
    }
    
    body header{
        display: flex;
        flex-direction: column;
    }

@media (min-width: 40em) {
    #materias{
        display: flex;
        justify-content: space-between;
    }
    .materias{
        width: 49%;
        margin-bottom: 0;
    }

    

#webapp{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}
#webapp img{
    display: flex;
    margin: 1.5em 0;
    width: 80%;
    
}
