@import url('https://fonts.googleapis.com/css?family=Montserrat');

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

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: lightslategrey;
}

img {
    width: 100%;
    height: auto; 
}


header {
    background-color: hotpink;
    padding: .6em;
    height: 3em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 10px rgba(0,0,0,0.3);
    z-index: 99;
}

header nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

header nav ul li a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    color: white;
    margin-left: 1.5em;
}

h1{
   
    padding: 5%;
    margin-top: 0.5Sem;
    margin-bottom: 1em;
    box-shadow: 0 .5em 2em rgba(0,0,0,.3);
}



/*inicial*/
.inicial .portada {
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
}



main, footer {
    padding: 4%;
}

.datos {

}
.datos h1 {
    color: white;
    font-weight: 100;
}
.datos p {
    color: #C5EBCE;
    font-weight: 100;
    font-size: .85em;
    margin-bottom: 4em;
}
/*botones de información*/
.bloque {
   
    border-top: solid 1px white;
    margin-top: 50px;
}


.bloque h2 {
    color: white;
    font-size: 1.1em;
    font-weight: 100;
    text-transform: inherit;
    margin-bottom: .5em;
}

.bloque ul {
    list-style: none;
}

.bloque ul li {
    color: #C5EBCE;
    font-size: .9em;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: .3em;
}
.bloque p {
    color: #C5EBCE;
    font-size: .85em;
    font-weight: 100;
    text-transform: none;
}


/* integrantes vm01 */
.integrantes ul {
    color: white;
    list-style: none;
    display: flex;
    flex-direction: column;
}

.integrantes ul li {
    background-color: lightslategrey;
    padding: 1em 1.5em;
    border-radius: .3em;
    margin-bottom: .5em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    box-shadow: 0 0.5em 2em rgba(0,0,0,.3);
}

.integrantes ul li a {
    text-decoration: none;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.3em;
    color: white;
    text-transform: none;
}

.integrantes ul li img {
    width: 1em;
    height: 1em;
    opacity: 0.6;
}

.separador {
    margin: 1em 0em;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,.1);
}

footer {
    border-top: 1px solid white;
}
footer p {
    color: #C5EBCE;
    font-size: .7em;
    font-weight: 300;
    margin-top: .5em;
}