@charset "utf-8";

* {
    box-sizing: border-box;
}

main {
    padding: 1em
}

body {
    background-color: rgb(255, 255, 255);
    margin:0;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
}

#mujeres {
    display: flex;
}



a {
    text-decoration: none;

}

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

img {
    max-width: 50%;
    height: auto;
}

.contenedora {
    max-width: 50rem;
    margin:auto;
}


.redes img {
    padding-right: 0.8em;
    width: 4em;
}

.h3{
    background-image: linear-gradient(to right, #c300ff, #ffa9de);
    border-radius: .25em;
    color: rgb(255, 255, 255);
    font-weight: bold;
    padding: .70em .5em;
    text-align: center;
    display:grid;
    
}

footer {
    background: #ff6060d3;
    color: #000000;
    text-align: center;
    padding: 10px 0;
    bottom: 0;
    width: 100%;
}




#logo {
    border-radius: .35em;
    padding: .35em;
    width: 15em;
    
}


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

header {
    background: #ff6060d3;
    color: #fff;
    padding: 1rem;
    text-align: center;
}


header nav ul {
    
    display:flex;
    justify-content:space-between;
    flex-wrap: wrap;
}

header nav ul li {
    min-width: 10em;
    margin: .25em 0 .25em .25em;
  
}

header nav ul li a {
    background-image: linear-gradient(to right, #c300ff, #ffa9de);
    border-radius: .25em;
    color: rgb(255, 255, 255);
    font-weight: bold;
    font-size: 20px;
    padding: .90em .5em;
    text-align: center;
    display: block;

}


section {
    padding-bottom: 2rem;
}


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

/* ---------equipo--------- */


.equipo ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.equipo img {
    /*    margin-right: auto;*/
    /*    padding: 5px;*/
    border: solid 1.5px #a200ff;
    border-radius: 50%;
    padding: 5px;
    width: 60%;
}

.equipo ol li {
    background-color:#ff6060d3;
    margin: .5em 0;
    padding: 1em;
    width: 49%;
    border-radius: .25em;
    display: flex;
    flex-direction: column;
}

.equipo ol li>*:not(p) {
    display: block;
    text-align: center;
    margin: 0 auto;
}

.equipo ol li h2 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    font-size: 1em;
}

.equipo ol li a {
    background-color: #ff98d8;
    border-radius: .25rem;
    color: #000000;
    line-height: 1.25em;
    padding: .125em 1em;
    margin-top: auto;
}



/* ---------equipo--------- */


/* ---------academicos--------- */
.academicos {
    display: flex;
    justify-content:space-around;
    align-items: center;
    padding: .90em .5em;
    border-width: .4em;
    border-style: solid;
    border-color: black;
}

.academicos p {
    font-size: 0.8em;
}

.academicos ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.academicos ul li:not(:last-of-type) {
    border-bottom: solid 1px rgba(255, 0, 0, 0.2);
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    text-align: center;
}

.academicos img {
    width: 12em;
    height: auto;
    justify-content: center;
}

.academicos ul li *:first-child {
    margin-right: 1em;
    width: 12em;
    text-align: center;
}





/* ---------academicos--------- */


/*Dispositivos desde 968px de ancho*/
@media screen and (min-width: 968px) {
    .portadamujeres img {
        width: 900px;
        max-width: 900px;
        align-content: center;
        margin: 0 auto;

    }

    .equipo {
        width: 60%;
    }

    .equipo ol {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }
}




/*Dispositivos desde 1200px de ancho*/
@media screen and (min-width: 1200px) {

.portadamujeres img {
    width: 1000px;
    max-width: 1000px;
    height: auto;
    align-content: center;
    margin: 0 auto;
    border-width: .4em;
    border-style: solid;
    border-color: black;
  }
}

.equipo {
    width: 60%;
    flex-direction: row;

}

.equipo ol {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.equipo ol li {
    background-color: #ff6060d3;
    margin: .5em 0;
    padding: 1em;
    width: 49%;
    border-radius: .25em;
    display: flex;
    flex-direction: column;
}

