@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,300;0,400;0,900;1,300;1,400;1,900&family=Poppins:ital,wght@0,100;0,400;0,700;1,100;1,400;1,700&display=swap');

/* CSS rules to specify families */

/* font-family: 'Chivo', sans-serif; */
/* font-family: 'Poppins', sans-serif; */

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

body{
    font-family: 'Chivo', sans-serif;
    background-color: rgb(245, 240, 238);
}
main{
    margin:3em
}

p{
    font-family: 'Poppins', sans-serif;
}

ul{
    list-style: none
}

a{
    font-family: 'Poppins', sans-serif;
    text-decoration: none;      
    outline: none;
}

h1{
    font-weight: 900;
    color: rgb(0, 0, 0);
    margin-bottom: 1em;
    text-transform: uppercase;
}

h2{
    font-weight: 900;
    color: rgb(255, 93, 52);
    margin-bottom: 1em;
    font-size: 2em;
    font-style: italic;
}

h3{
    font-weight: 400;
    color: rgb(255, 93, 52);
    margin-bottom: 1em;
    text-transform: uppercase;
}



header{
    background-color: rgb(255, 93, 52);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items:center;

    padding: .9em;
}

header ul li a{
    color: rgb(255, 93, 52);
    display: block;
    background-color: rgb(245, 240, 238);
    border-radius: 10px;
    max-width: 10em;
    margin: 0.5em;
    padding: 0.3em 0.5em;
}

header ul li a:hover{
     color: white;
     background-color: rgb(255, 93, 52);
     box-shadow: 0.2em 0.2em rgb(204, 65, 31) inset;
}

nav{
    display: inline-flex;
    justify-content: center;
    color: aquamarine;
}

#logo{
    margin:0em 0em 0em 2em;

}

#equipo{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

#equipo h3{
    width: 100%;
}

.estudiante{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 1.5em 0em 1.5em 0em;
}

.estudiante figure img{
    margin-bottom: 2em;
}

.estudiante h3, .estudiante p{
    text-align: center;
}

.comitente{

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3em;
}

.otros{
    background-color: rgb(255, 255, 255);
    padding: 3em;
    box-shadow: 0.3em 0.3em 1em rgb(182, 164, 161);
}

.otros ul{
    display: inline-flex;
    flex-wrap: wrap;
}
.otros a{
    background-color:rgb(255, 93, 52);
    color: white;
    margin:0.7em 0.4em 0em 0.4em;
    border-radius: 5px;
    padding: 0.4em;
    display: inline-flex;
    justify-content: space-between;
}

.otros a:hover{
    background-color:white;
    color: rgb(255, 93, 52);
    box-shadow: 0.2em 0.2em rgb(201, 193, 191) inset;
}
/*plan.html*/

h2{
    margin-bottom: 1em;
}

#plan{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
#plan .enfoque{
    margin-top: 3em;
}

#plan .enfoque ul{
    font-family: 'Poppins', sans-serif;
}

/*mapa html*/


.mapa img{
    max-width: 100%;
    height: auto;
}

#datosAcademicos{
    font-family: 'Poppins', sans-serif;
        
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 4em;
}

#datosAcademicos img, .comitente img{
    margin-top:2em;
}

footer{
    background-color: rgb(219, 219, 219);
    font-size: 0.75em;
    padding: 4em;
}

footer p{
    display: flex;
    justify-content: center;
}

/* a partir de 800px */

@media(min-width: 50rem) {

    main{
        padding: 0em 5em 0em 5em;
    }
    
    #equipo{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    #equipo h2{
        width: 100%;
    }

    .estudiante{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        margin: 1.5em 2em 1.5em 2em;
    }

    .otros{
        margin: 3em;
        border-radius: 10px;
    }


    footer p{
        display: flex;
        justify-content: center;
        width: 60%;
    }

}