/* CV MARCOS FERNANDEZ */

html{
	font-weight: 16px;
	font-family: 'PT Sans', sans-serif;
}

body{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

header{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid .5em black;
    background-color: #0A89FF;
    height: 5em;
    width: 100%;
    position: fixed;
    width: 100%;
}

.fix{
	height: 5em;
	width: 100%;
	background-color: white;
} 

/* MENU */

.headerSticky{
   	height: 3em;
}

header .movimiento{
	right: -801px;
}

.imgDesp img{
	width: 2.5em;
    height: 2.5em;
    display: block;
} 

.imgLogo{
	width: 5em;
    height: 5em;
    margin-left: 1em;
}

.navMenu ul{
	display: flex;
	margin-right: 1em;
	margin: 0;
}

.navMenu ul li{
	display: flex;
	height: 2em;
	width: 2em;
	background-color: #FFFFFF;
	margin-right: .5em;
}

.navMenu ul li:nth-last-child(1){
	margin-right: 0;
}

.navMenu ul li a{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 100%;
}

/* MAIN */


main,article{
	font-size: 1.5em;
}

.wrap{
	max-width: 400px;
	margin: 0 auto;
}

.datosPersonales{
	display: flex;
	align-items: center;
    justify-content: center;
    margin-top: 3em;
    margin-bottom: 2em;
}

.misDatos{
	max-width: 50%;
	margin-left: .3em;
	font-size: .8em;
}

.misDatos h3{
	font-weight: 700;
}

.imgAvatar{
	width: 40vw;
    max-width: 20em;
    max-height: 20em;
    padding: 0 .3em 0 0;
    border-right: solid .1em #474747;
}

.misDatos .nombre{
	font-weight: 700;
	font-size: 2.7rem;
}

/* FOOTER */

footer{
	background-color: black;
	margin-bottom: 6em;
}

footer nav{
	padding: 2em 0
}

footer ul{
	max-width: 80%;
	margin: 0 auto;
}

footer img{
	height: 2.5em;
	width: 2.5em;
	margin-left: 10%;
}

footer a {
	color: white;
	text-decoration: none;
	display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1em 0;
}

/* ARTICLE */

.secciones{
	margin-left: .5em;
	margin-bottom: 3em;
}

.title{
	display: inline-block;
	margin-bottom: .6em;
	border-bottom: solid .05em #474747;
}

.infoPrincipal{
	margin-bottom: .3em;
}

#espacio{
	margin-bottom: .7em;	
}

.secciones p{
	font-size: .7em;
	margin-bottom: .3em;
}

