/* estilos en general */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* { 
font-family: "Roboto";


    
}
html {
    
    height: 100%;
    background-color: #DBE2E7;
     }

body {

    margin: 0px;
        }

h3{
    font-weight: 700;
    font-size: 13px;
}

/* barra navegadora */ 

.navbar {
    display: flex;
    /*position: fixed;^*/
    width: 100%;
    background-color: #573442;
    justify-content: space-between;
    padding: 15px 0px;
    
    }

.navbar li {
    display: inline;
    padding: 30px 60px;
   
    }
   
.navbar a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 15px;
    
    }

.navbar .logodgpc {
   margin-left: 50px;
    margin-top: 10px;
   
}

#logodgpc {
    background-color: whitesmoke;
}
    
/*perfil y materias aprobadas*/

.main {
    /*display: flex;*/
    justify-content: space-evenly;
    margin: 70px 70px 70px 70px;
    
    
}

.main .perfil {
    text-align: center;
    padding: 2em;
    min-width: 35em;
}

.main .materias {
    margin: 30px 0;
    text-align: center;
    display: flex;
    justify-content: center
}
.materias .aprobadas {
    text-align: center;
    background-color: whitesmoke;
    margin-bottom: 30px;
    border-radius: 1em;
    padding: 30px;
    max-width: 20em;
    margin-bottom: 30px;
    width: 15em;
    margin-right: 15px;
}

.materias .encurso {
    text-align: center;
    background-color: whitesmoke;
    margin-bottom: 30px;
    border-radius: 1em;
    padding: 30px;
    max-width: 20em;
    margin-bottom: 30px;
    width: 15em;
    margin-right: 15px;
}

.materias .propuesta {
    text-align: center;
    color: black;
    background-color: whitesmoke;
    margin-bottom: 30px;
    border-radius: 15px;
    padding: 30px;
    max-width: 20em;
    margin-bottom: 30px;
    width: 15em;
    margin-right: 15px;
}

ul { 
    list-style-type: none;
    padding: 0;

}

/*equipo jt18 */

.jt18 li {
    text-align: center;
    padding: 2em 0;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-direction: row;
    margin: 10px;
}

.jt18 a { 
    color: black; 
    text-align: 
}
    
    
.integrante{
    display: flex;
    margin-bottom: 1em;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: center;
}


#integrantes{
    display:flex;
    justify-content: center;
}

/* info academica */

.infofacu {
    display: flex;
    justify-content: space-around;
    text-align: left;
    align-content: center;
    color: black; 
    font-size: 10pt;
    padding-right: 50px;
    padding-left: 50px;
    margin-top: 100px;
          }

/* footer */

footer {
    color: #ffffff;
    text-align: center;
    margin-top: 100px;
    padding: 25px;
    background-color: #2E3532;
}

@media (min-width: 20em) {

	.infofacu {
    
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
	}

}

@media (min-width: 40em) {
   
   .infofacu {
   flex-direction: row;
   align-items: flex-start;
   justify-content: space-around;
   align-content: center;

}



