*{
	padding: 0;
	margin: 0;
	text-decoration: none;
}

html{
	background: #D7DBDD;
}
body{
	height: 2000px;
	width: 1490px;
	background: #FDFEFE;
	margin: auto;
	margin-top: 35px;
	font-family: 'Segoe UI';
}
/*Cabecera*/
header{
	height: 450px;
	width: 1490px;
}
#titulo h1{
	font-size: 70px;
	margin-left: 300px;
}
.inicio{
	background-image: url(../img/fondo3.jpg);
	background-position: center center;
	background-size: cover;
	opacity: 80%;
}
#buscador input{
	width: 300px;
	height: 38px;
	float: right;
	margin-right: 150px;
	margin-top: 190px;
}
/*Menu*/
nav{
	height: 80px;
	width: 1490px;
	background: #692b9c;
}
nav > ul{
	display: flex;
	height: 30%;
}
nav > ul > li{
	height: 100%;
	list-style: none;
	position: relative;
}
nav > ul > li:first-child > a{
	background-image: url(../img/home.png);
	background-size: 29px;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 16px 13px;
	margin: 8px;
}
nav > ul > li:first-child:hover > a{
	background-image: url(../img/home.png);
	background-size: 30%;
	background-repeat: no-repeat;
	background-position: center center;
}
nav > ul > li > a{
	width: 100%;
	height: 100%;
	display:flex;
	align-items: center;
	padding: 30px;
	color: white;
	text-transform: uppercase;
	font-size: 20px;
	transition: all 450ms ease;
}
nav > ul > li > a:hover{
	transform: scale(1.1);
	background: #be5cf7;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
		padding: 25px 20px;
}

/*SUBMENU*/
nav ul li ul{
	width: 250px;
	display: flex;
	flex-direction: column;
	background: #fff;
	position: absolute;
	top: 90px;
	left:5px;
	padding: 14px 0px;
	visibility: hidden;
	opacity: 0px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
	z-index: 10;
	transition: all 300ms ease;
}

nav ul li:hover ul{
	visibility: visible;
	opacity: 1;
	top: 70px;
}

nav ul li ul:before{
	content: '';
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-bottom: 12px solid white;
	position: absolute;
	top: -12px;
	left: 20px;
}

nav ul li ul li a{
	display: block;
	color: #0099E9;
	padding: 6px;
	padding-left: 14px;
	margin-top: 10px;
	font-size: 14px;
	text-transform: uppercase;
	transition: alll 300ms ease;
}
nav ul li ul li a:hover{
	background: #0074C7;
	color: #fff;
	transform: scale(1.1);
	padding-left: 30px;
	font-size:14px ;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/*Artículos y anuncio*/
main{
	height: 1430px;
	width: 1490px;
	background: #F2F3F4;
}
#derecho{
	width: 300px;
	height: 1430px;
	background: #a86fbee8;
	float: right;
}
aside p{
	margin-top: 15px;
	margin-left: 28px;
	margin-right: 20px;
	font-size: 22px;
	padding: 20px;
}
aside img{
	width: 200px;
	height: 200px;
	margin-top: 40px;
	margin-left: 40px;
}
/*Articulos*/
article h2{
	font-size: 42px;
	text-align: center;
	padding: 40px;
}
article p{
	font-size: 25px;
	padding: 40px;
}
article img{
	width: 270px;
	height: 290px;
	margin-left: 160px;
	border-radius:10%;
	object-fit: cover;
}
/*Pie de página*/

footer{
	height: 240px;
	background: #692b9c  ;
}
footer .social{ 
	text-align: center;
	padding-bottom: 25px;
	color: #e4c4ff;
	
}
footer .social a{
	font-size: 60px;
	color: inherit;

	width: 80px;
	height: 50px;
	line-height: 38px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	margin: 0 8px;
	opacity: 0.65;	
	margin-top: 25px;
}
footer .social a:hover{
	opacity: 0.9;
}
footer ul{
	margin-top: 0;
	padding: 0;
	list-style: none;
	font-size: 22px;
	line-height: 1.6;
	margin-bottom: 0;
	text-align: center;
}
footer ul li a{
	color: inherit;
	text-decoration: none;
	opacity: 0.8;
	margin: 24px;
}
footer ul li{
	display: inline-block;
	padding: 0 15px;
}
footer ul li a:hover{
	opacity: 0.5;
}
footer .copyright{
	margin-top: 25px;
	text-align: center;
	font-size: 18px;
}
