*{
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	list-style: none;
	text-decoration: none;
}
body{
	background-image: url(../img/fondo.jpg);
	background-size: cover;
	background-attachment: fixed;
}
#contenedor{
	width: 100%;
	display: flex;
	flex-direction: column;
}
header{
	width: 100%;
}
header #logo, .tl{
	width: 100%;
}
header img{
	display: block;
	margin: auto;
}
/*-------------------------------*/
article{
	width: 100%;
}
article .buscador, .boton{
	width: 100%;
	display: flex;
	justify-content: space-around;
}
.noticias{
	background: white;
	width: 40%;
	height: 480px;
	padding: 15px;
	margin-left: 30px;
}
.noticias span{
	color: black;
}
.noticias span:hover{
	color: red;
}
.noticias h1 , li{
	padding: 15px;
}
.noticias h1{
	color: #171717;
	font-size: 30pt;
}
.noticias li a{
	color:#234384;
	font-style: italic;
	font-weight: 900;
}
.noticias li a:hover{
	color:#666666;
}
.multib{
	width: 60%;
	height: 480px;
	padding: 15px;
	margin-right: 30px;
	background: rgba(255,255,255,0.5);
	display: flex;
	flex-direction: column;
	align-items:center;
}
.multib h3{
	text-align: center;
}
article .oculto{
	display: none;
}
article .boton div a, .oculto a{
	background: #870707;
	color: white;
	padding: 15px 20px 15px 20px;
	font-size: 20pt;
	border-radius: 15px;
	display: block;
	text-align: center
}
article .boton div a:hover, .oculto a:hover{
	background:rgba( 135,7,7,0.5);
}
footer{
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::RESPONSIVE<3:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

@media screen and (max-width: 800px){
	#contenedor{
		width: 100%;
		display: flex;
		flex-direction: column;
		align-content: center;
	}
	header , footer{
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	article{
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	article .oculto{
		display: block;
		text-align: center;
	}

	article .buscador{
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: center;
	}

	article .noticias , .multib{
		width: 95%;
		margin: auto;
		padding: 0;
	}
	.noticias h1{
		font-size: 25pt;
	}
	.noticias li{
		font-size: 15pt;
	}
	article .multib{
		padding-top: 15px;
		height: auto;
		display: flex;
	}
	article .boton {
		width: 100%;
		display: block;
		flex-direction: column;
	}
	footer{
	width: 100%;
	height: 100px;
	text-align: center
	color: white;
}
}

@media screen and (max-width: 380px){

	header img{
		width: 200px;
	}
	article .boton div a, .oculto a{
		font-size: 15pt;
	}
	.noticias h1{
		font-size: 20pt;
	}
	.noticias li{
		font-size: 12pt;
	}
	footer{
	width: 100%;
	height: 100px;
	display: flex;
	color: white;
	text-align: center;
}
}