@charset "utf-8";
/* CSS Document */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	background: #878585;
}

#contenedor{
	width: 960px;
	margin:auto;
	margin-top: 20px;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 20px;
}

header{
	height:100px;
	background: #000000;
}

header h1{
	color: #FFFFFF;
	font-size:50px;
	font-weight: bold;
	font-family:Arial;
	line-height: 100px;
	margin-left: 10px;
	float: left;
}

#redes{
	float: right;
	line-height: 100px;
}

#redes img{
	margin: 10px;
	vertical-align: middle;
	border-radius: 100%;
}

nav{
	background: #FF0004;
	height: 60px;
}

nav li{
	list-style:none;
	display: inline-block;
	padding: 20px 0px;
}

nav a{
	color: #FFFFFF;
	font-size:20px;
	font-weight: bold;
	font-family: Arial;
	text-decoration:none;
	padding:20px;
}

nav a:hover{
	background: #000000;
}

#banner{
	margin:auto;
	border:10px solid #FFFFFF;
	margin-top:10px; 
}

#contenido{
	float: left;
	width: 700px;
	background: #A7999A;
	border-radius:10px;
	overflow: hidden;
	margin-top: 10px;
	margin-right: 10px;
}

.articles h2{
	font-size: 40px;
	padding: 10px;
	color: #6B5859;
	border-bottom:2px solid #FF0004;
}

.articles img{
	float: left;
	margin: 10px;
}

.articles p{
	margin-bottom: 10px;
	margin-top:10px;
	line-height: 15px;
}

aside{
	float:right;
	width: 250px;
	background: #8B8383;
	margin-top: 10px;
	border-radius: 10px;
}
aside h3{
	font-size: 24px;
	background: #1D1919;
	text-align: center;
	padding: 10px;
	color: #FFFFFF;
}

aside p{
	padding: 10px;
	font-size: 12px;
	text-align: justify;
	line-height:15px; 
}

#img-aside{
	text-align: center;
	margin-bottom: 10px;
}

footer{
	height: 60px;
	background: #2E2A2B;
	clear: both;
}

footer p{
	font-size: 20px;
	color: #FFFFFF;
	text-align: center;
	line-height: 60px;
	font-style: italic;
}