body, html{
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
}

div#contenedor{
	background-color: beige;
}

header{
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	-webkitflex-wrap: wrap;
}

header > div > h2{
	color: grey;
}

div#foto{
	width:160px;
	height: 178px;
	border-radius: 50%;
	background: url(../imgs/perfil.jpg);
}

section > div#galeria > div#imagenes{
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	-webkitflex-wrap: wrap;
}

section > div#galeria > div#imagenes > div#imagen_galeria{
	width: 360px;
	height: 500px;
	margin: 10px 10px 0px 0px;
	border-radius: 8%;
	
	background: grey;

	display: -webkit-flex;
	display: flex;
	align-items: center;
	justify-content: center;
}

footer{
	background-color: firebrick;
	padding: 25px;
	border-radius: 10px;
	margin-top: 30px;
}