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

body {
    font-family: 'raleway', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: rgb(39,48,74);
}

/* menu */
#logo-dgpc {
    margin-bottom: .8em;
    margin-right: .4em;
    width: 4em;
    display: block;
}

#menu0 {
    padding: .6em;
    height: 3em;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    z-index: 99;
}

header nav {
    display: flex;
    background-image: linear-gradient(45deg, rgba(255,255,255,0.1) 0%,rgba(39,48,74,1) 100%);
    padding: .2em;
    border-radius: .5em;
    box-shadow: 0 .5em 2em rgba(0,0,0,.3);
    margin-top: 0.3em;
}

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

.menu ul li a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    margin-left: 1em;
    margin-right: 1em;
    color:rgb(233,76,139);
    }

.menu ul li a:hover {
    color: rgb(126,118,181);
}

/*slider*/
.slider {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.slider ul {
    display: flex;
    padding: 0;
    width: 300%;
    animation: cambio 15s infinite alternate linear;
}

.slider ul li {
    width: 100%;
    list-style: none;
}

.slider img {
	width: 100%;
}

@keyframes cambio {
	0% {margin-left: 0;}
	25% {margin-left: 0;}
	
	30% {margin-left: -100%;}
	55% {margin-left: -100%;}
	
	60% {margin-left: -200%;}
	100% {margin-left: -200%;}
}

/*inicial*/
.inicial .slider ul li img {
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
}

.inicial .behance {
    margin-left: 1em;
    margin-top: -1.2em;
}

.inicial .behance a img {
    width: 1.2em;
    height: auto;
    position: relative;
    top: -.1em;
    display: inline-block;
    vertical-align: middle;
}

.inicial .behance a {
    border-radius: 50%;
    background-color: white;
    padding: .8em;
}

main, footer {
    padding: 4%;
}

.datos {
    margin-left: 2.5em;
}
.datos h1 {
    color: white;
    font-weight: 100;
}
.datos p {
    color: #8c97b9;
    font-weight: 100;
    font-size: .85em;
    margin-bottom: 4em;
}

/*botones de información*/
.bloque {
    background-image: linear-gradient(45deg, rgba(255,255,255,0.2) 0%,rgba(39,48,74,1) 100%);
    border-radius: .5em;
    padding: 5%;
    margin-top: 1em;
    box-shadow: 0 .5em 2em rgba(0,0,0,.3);
}

.bloque h2 {
    color: white;
    font-size: 1.3em;
    font-weight: 100;
    text-transform: inherit;
    margin-bottom: .5em;
    border-bottom: .05em solid rgb(126,118,181);
    border-bottom-width: thin;
}

.bloque ul {
    list-style: none;
}

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

.bloque ul li p {
    color:rgb(126,118,181);
    font-size: .8em;
}

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

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

.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);
}

/* bloque destacado */
.destacado {
    background-color: rgb(233,76,139);
    padding: 1em 1.5em;
    border-radius: .3em;
    margin-bottom: 1.5em;
    box-shadow: 0 .2em .6em rgba(233,76,139,.4);
}

.destacado h3 {
    margin-bottom: .6em;
}

footer {
    border-top: 1px solid rgb(233,76,139);
}
footer p {
    color: rgba(126,118,181,.8);
    font-size: .7em;
    font-weight: 300;
    margin-top: .5em;
}