/*Generales  -------*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    }
header,
footer {
    background-color:#e5675b;
    color: #000000;
    padding: 2em;
}
main {
    background-color: #fac9c4;
}

img {
    max: width 100%;
    margin:  0 0 0;
}
a {
    text-decoration: none;
    color: #000000;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
h4{
	color: white;
	font-size:21px;
	text-align: center;
	padding: 1em;
}

    .logodgpc {
    height: 6em;
}

#companeros {
    display: flex;
    background-color: #F48075;
    border-radius:20em;
    color: white;
    font-weight: bold;
    line-height: 1.7em;
    padding: .125em .5em;
    margin: 1em 2em 1em;
}
#companeros:hover {
    background-color: white;
    color: #e5675b;
}

h2 li{
    list-style: none;
}
ul,
ol{
    list-style: none;
    padding: 0;
}

/*main*/


h2{
    margin: 1em, auto, 1em, auto;
    color:white;
    padding: .5em;
    border-radius: .40em;
    font-size: 1em;
    display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
}
	
 .estudiante{
        background-color:#F48075;
        padding: 1em;
        margin: 2em 2em 2em 2em;
	    border-radius: .40em;
        display: flex;
	    flex-direction: column;
	    flex-wrap: nowrap;
	    justify-content: center;
}

/HEADER---------------------------/

header .contenedora {
    display: flex;
    justify-content: space-between;
    align-items:center;
    margin: 0 auto;
    width: 70%;
}
header nav ul {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
header nav ul li {
    background-color: white;
    border-radius: 20em; 
    text-align:center;
    margin: 1em 0.2em 1em 0.2em;
    padding: 0.5em 1em;
}
header nav ul li a {
    color: #e5675b;
    font-weight: bold;
    font-size: 16px;
	transition: 0.3s all;
}
.activo {
	background-color: #fac9c4;
    color: white;
	border-radius: 20em;
	
}
nav ul li a:hover {
    border:solid #e5675b;
}
.titulos {
    display: block;
	border-radius: 20em;
    margin: 2em 1.5em 1.5em 1.5em;
    padding: 1em;
    background-color: #ffffff;
    color: #e5675b;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}
	h3 {
	color:#fffff;
	font-size:21px;
	text-align:left;
	padding: 1em;
}
	
/* REGLAS PARA DISPOSITIVOS DE ESCRITORIO */

/* ESCRITORIO PEQUEÃ‘O/ TABLET */

@media screen and (min-width: 768px) 
{

   
     body{
        background-color: #fac9c4;
        display: flex;
	   flex-direction: column;
	   flex-wrap: nowrap;
	   justify-content: center;
     }    


    header{
        background-color:#F48075;
        display: block;
	    flex-direction: row;
	    flex-wrap: nowrap;
	    justify-content: center;
    }

    header nav ul{
            display: flex;
            }

    header ul li {
        display: inline-block;
        padding: 1em;
    }

.estudiante {
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;}
}
