@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Signika+Negative:wght@700&display=swap');


/*-- márgenes ---*/

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

}



/* ------generales------- */

body {
    margin: auto;
    font-family: 'Lato', sans-serif;
   background-color: #393837;
   min-height: 100vh;
   min-height: -webkit-fill-available;

}

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

a {
    text-decoration: none;
    display: block;
    margin: auto;
    width: 8em;
    text-align: center;
    color: #4177e5;
    background-color: white;
    padding: 0.32em;
    margin-bottom: 0.8em;
    font-weight: 700;
}

a:hover{
    background-color: #fb92d5;
    color: white;
}

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

img {
    /* para que NO midan más que la etiqueta que las contiene */
    max-width: 100%;
    height: auto;
}

h1 {
    padding: .2em;
    color: white;
    font-size: 3em;
    font-family: 'Signika Negative', sans-serif;
    font-weight: 700;
}

h2 {
    background-color: #4177e5;
    color: white;
    padding: .7em;
    text-align: center;
    font-family: 'Signika Negative', sans-serif;
    font-size: 1.9em;

}

h4 {
   font-weight: 900;
    margin-bottom: .3em;
}

h5{
    font-weight: 900;
}


/* ---HEADER--- */


/*logo dgpc */

header div img{
    background-color: white;
    padding: 0.1em;
    margin: 0.5em;
}

header div{
    text-align: center;
}




/* ---MAIN---*/

/* integante, mi información */

main{
    margin: auto;
}

section figure figcaption{
    padding-bottom: 1em;
    padding-top: 0.5em;
}

 #equipo{
     background-color: #4177e5;
     text-align: center;
}

 #equipo figure img{
     border-radius: 4em;
     text-align: center;
}

#equipo figcaption{
    font-weight: 700;
    font-size: .8em;
}

/* materias aprobadas, historial academico */

#historial {
    background-color: #fabdba;
    padding: 1em;
}

#historial div{
    margin-top: 0.5em;
}

#historial #nivel1{
    /* "subrayado" a todo lo ancho de la caja */
    border-bottom: 0.4em solid #fb92d5;
    /* separación del texto */
    padding-bottom: 0.5em
}


/* nav de equipo  */

#vm15 nav{
    padding: 1em;
   
}

#vm15 nav ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;

}

#vm15 nav ul li , 
#rotulos nav ul li ,
header nav ul li{
    margin: .4em;
}



/*  integrantes */

#rotulos nav ul li a{
    color: white;
    background-color: #4177e5;
    padding: .5em;
    text-align: center;
}   


#rotulos nav ul li a:hover{
    background-color: #fb92d5;
    color: white;
} 

#vm{
    background-color: #fabdba;
}

#rotulos nav h4{
    text-align: center;
}



/* -- objetivo, usuario -- */
.enfoque{
    padding: 1em;
}

.enfoque div{
    margin-top: 0.5em;
}

.enfoque #objetivo{
    border-bottom: 0.4em solid #fb92d5;
    padding-bottom: 0.5em
}


/* Datos académicos */

#academico a:hover {
    background-color: white;
}


#datos {
    background-color: #fabdba;
    padding: 1em;
}

#logodgpc a:hover{
    background-color: none;   
}


.fadu h4 {
    margin-top: .9em;

}

#dgpc , #acumar {
    border-top: 0.4em solid #fb92d5;
    padding-top: 1em;
    padding-bottom: 1em;
    
}

 #uba{
    padding-bottom: 1em;
}

.catedra{
    padding-bottom: 1em;
}
.catedra a figcaption{
    font-size: 0.7em;
    color: black;
    font-weight: 300;

}



/*----FOOTER----*/


footer{
    background-color:#4177e5;
    color: white;
    font-size: 0.80em;
    padding: 1em;
    font-weight: 300;
    
}





/* ---- reglas para cuando cambia el tamaño de la pantalla ---- */


/* pantalla - Tablet 600px */
@media(min-width: 600px) {

body{
    margin-left: 5em;
    margin-right: 5em;
}




}



/* pantalla - Media 800px */


@media(min-width: 800px) {

body{
    margin-left: 5em;
    margin-right: 5em;
}    


/*MAIN*/

/* datos academicos, materias aprobadas */

    #historial , .enfoque {
    display: flex;
    flex-wrap: wrap;
  
    justify-content: space-between;

    }


    #historial div , .enfoque div {
        width: calc(49% - 0.1em);
    
    }

    #historial h4 , .enfoque h4{
        width: 100%;
    }

    #historial #nivel1 , .enfoque #objetivo{
        border-bottom: none;
        border-right: 0.4em solid #fb92d5;
        margin-right: 0.3em;

    }


    #rotulos nav ul li , #vm15 nav ul li {
        display: inline-block;
    }

    #rotulos nav , #vm15 nav{
        text-align: center;
    }



/* HEADER */

/* ----- nav ------ */

header nav ul li {
    display: inline-block;
}

header nav{
    text-align: center;
}

/* ---- datos académicos ---- */

#datos li , .catedra div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}



#datos li div {
 width: calc(50% - .5em);;

}

#dgpc , #acumar {
 border-top: none
}

#datos > li:first-child{
 border-bottom: 0.4em solid #fb92d5;
}

#datos > li:last-child{
 border-top: 0.4em solid #fb92d5;
}

} 




/* pantalla - Desktop, 1100px */

@media(min-width: 1100px) {

body{
    margin-left: 10em;
    margin-right: 10em;
} 



}
