@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;500;600;800&display=swap');

*{
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    box-sizing: border-box;
    color: rgb(243, 244, 242);;

}

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

a{
    text-decoration: none;
}

li{
    list-style: none;
}

/*-----MOBILE FIRST-----*/

/*header*/
header{
    display: flex;
    padding: 1em;
    flex-direction: row;
    align-items: center;
    justify-content:space-evenly;
    background-color: #337da3;
}

nav ul{
    display: flex;
    flex-direction: row;
}

nav ul li{
    background-color:#337da3;
}

nav ul li a{
    padding: 0.5em;
    background-color: #337da3;
}
/*main*/
main{
    display: flex;
    flex-direction: column;

}

#comitente{
    display: flex;
    margin: 2em auto;
    flex-direction: column;
    padding: 2em; 
    border: #686a69 2px solid;
    border-radius: 10px;
    width: 20em;
}

#comitente div{
    
    padding: 1em;
    margin-top: 1em;
    text-align: right;
}

#comitente h1{
    color:#fa8072
}

#comitente div h2{
    color: #337da3;
    padding-bottom: .5em;
}
#comitente img{
    display: none;
    margin: auto;
    max-width: 75%;
}

#comitente p{
    display: flex;
    flex-wrap: wrap;
    color: #337da3;
}

#equipo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 4em;
}


#equipo h2{
    padding: 0.2em 3.7em;
    font-size: 2em;
    
    color: #337da3
}

#equipo img{
    display: flex;
    width: 150px;
    height: 150px;
    align-self: flex-end;
    margin: 1em;
    border-radius: 10px;
    
}
.estudiante{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1em;
    margin-bottom: .5em;  
    width: 15em;
       
}

.estudiante figure{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center ;
    align-items: center;
    border: #686a69 2px solid;
    border-radius: 10px;
    width: 20em;
}

.estudiante figcaption{
    width: 80%;
    text-align: left;
    align-self: flex-start;
    margin: .5em;
    
}

.estudiante h3{
    color: #337da3;
}

.estudiante p{
    color: #686a69;
}

.estudiante a{
    display: flex;
    margin: 0 1em .5em 0;
    align-self: flex-end;
    padding: .2em .4em;
    background-color: #337da3;
    border-radius: 5px;
    font-weight: 500;
}


#usuario{
    display: none;
}

#datosacademicos{
    background-color: rgb(21, 23, 20);
    padding: 2em 1em;
    display: flex;
    flex-direction: column;
    font-size: .5em;
}

#datosacademicos ul{
    margin-bottom: 1.2em;
}

/*footer*/

footer{
    background-color: #337da3;
    padding: 1em .5em;
    font-size: .5em;
}

/*PLAN*/

.desarrollo{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 4em;
    justify-content: center;
    align-items: center;
}

.desarrollo h4{

    padding: 0.2em 2em;
    background-color: rgb(13, 94, 113);
    font-size: 1em;
    color: rgb(165, 127, 65);
    text-align: center;
    margin: 1em 20% 0 20%;
    font-weight: 600;
}


#inicio{
    display: flex;
    margin: 2em auto;
    flex-direction: column;
    padding: 2em; 
    background-color: rgb(165, 127, 65);  
    width: 20em;
}

#inicio h1{
    font-weight: 800;
}
#inicio h2{
    font-weight: 600;
}

#inicio div{
    background-color: rgb(21, 23, 20);
    padding: 1em;
    margin-top: 1em;
    text-align: right;
}

#inicio div h2{
    color: rgb(13, 94, 113);
}

#inicio div p{
    color: rgb(13, 94, 113);
}

#objetivos p{
    margin: .5em 15%;
    text-align: center;
    color: rgb(243, 244, 242);
    font-weight: 400;
}

#funciones p{
    margin: .5em 15%;
    text-align: center;
    color: rgb(243, 244, 242);
    font-weight: 400;
}

.usuario{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2em;
}

.usuario a{
    background-color: rgb(165, 127, 65);
    color: rgb(243, 244, 242);
    padding: .5em;
    margin: .5em auto;
    width: 12em;
    text-align: center;
    font-weight: 600;
    
}



/*DISPOSITIVOS DE ESCRITORIO*/

/*ESCRITORIO PEQUEÑO / TABLET*/
@media  screen and (min-width: 768px)  {

    /*main*/

    #comitente{
        width: 40em;
        text-align: center;
    }
    #comitente div{
        text-align: center;
    }

    #equipo {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        width: 42em;
        margin: auto;
    }

    #equipo h2{
        width: 100%;
        text-align: center;
        margin: 0.2em auto;
    }

    #equipo article{
        display: flex;
    }

    .estudiante{
        width: calc(50% - .5em);
    }

    #datosacademicos {
        display: flex;
        flex-direction: row;    
        justify-content: center;
        align-content: flex-end;
        align-items:flex-start;
        padding: 6em 1em 4em 1em;
    }

    #datosacademicos ul{
        width: calc(30% - .2em);
        margin: .4em;
    }

    /*PLAN*/

    #inicio div h2 {
        text-align: center;
    }

    #inicio div h2 p{
        text-align: center;
    }

    .desarrollo h4{

        padding: 0.2em 2em;
        background-color: rgb(13, 94, 113);
        font-size: 1em;
        color: rgb(165, 127, 65);
        text-align: center;
        margin: 1em 30% 0 30%;
    }

    #inicio{
        width: 60%;
        text-align: center;
        margin: 2em auto;
    }
}

/*ESCRITORIO MEDIANO*/
@media  screen and (min-width: 992px)  {

    /*header*/

    header{
    justify-content: space-between;
    }

    /*main*/

    #equipo {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: row;
        width: 100%;
    }

    #equipo h2{
        width: 100%;
        text-align: center;
        margin: 0.2em auto;
    }

    #equipo figure{
        display: flex;
        justify-content: center;
        width: 300px;
        height: 320px;
    }

    .estudiante{
        width: calc(33% - .5em);
        
    }

    #datosacademicos {
        display: flex;
        flex-direction: row;    
        justify-content: center;
        align-content: center;
        align-items:center;
        padding: 6em 1em 4em 1em;
    }

    #datosacademicos ul{
        width: calc(30% - .2em);
        margin: .4em;
    }

/*PLAN*/

    #objetivos{
        display: flex;
        flex-wrap: no-wrap;
        flex-direction: row;
        justify-content: center;
    
    
    }
    

    #funciones{
        display: flex;
        flex-direction: row;
        flex-wrap: no-wrap;
        justify-content: center;
    
    }

    #objetivos div{
        display: flex;
        flex-direction: column;
        max-width: 40%;
        
    }

    #funciones div{
        max-width: 40%;
    }

    .desarrollo h4{

        padding: 0.2em 2em;
        background-color: rgb(13, 94, 113);
        font-size: 1em;
        color: rgb(165, 127, 65);
        text-align: center;
        margin: 1em 30% 0 30%;
    }
    
    .usuario{
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin: 0 auto 2em auto;
    }

    .usuario a{
        margin: 0 2em
    }

}

/*ESCRITORIO GRANDE*/
@media  screen and (min-width: 1200px)  {

    #equipo {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: row;
    }

    #equipo h2{
        width: 100%;
        text-align: center;
        margin: 0.2em auto;
    }

    #equipo figure{
        
        width: 280px;
        height: 340px;
    }

    #equipo article{
        display: flex;
        position: relative;

    }

    #equipo figcaption{
        position: absolute;
        top: 1em
    }

    #equipo img{
        position: absolute;
        top: 7em;

    }

    #equipo a{
        position: absolute;
        bottom: 2em;
    }

    .estudiante{
        width: calc(25% - .5em);
        flex-direction: row;
    }

    
        /*PLAN*/

        .desarrollo h4{

            padding: 0.2em 2em;
            background-color: rgb(13, 94, 113);
            font-size: 1em;
            color: rgb(165, 127, 65);
            text-align: center;
            margin: 1em 30% 0 30%;
        }

}
