:root{
	/* --paneles:rgb(255, 255, 255);
	--font:rgb(0, 0, 0);
	--hover:#20e3b2; */

	--paneles:rgb(255, 255, 255);
	--font:rgb(0, 0, 0);
	--hover:#20e3b2;
	--nav:rgb(255, 255, 255);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 300;
	width: 100%;
    background: #0cebeb;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #29ffc6, #20e3b2, #0cebeb);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #29ffc6, #20e3b2, #0cebeb); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

a {
	text-decoration: none;
}

.contenedor {
	width: 90%;
	max-width: 1600px;
	margin: 20px auto;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(4, auto);
	grid-template-areas:
		'header			header   	header'
        'formulario     formulario   formulario'
		'footer	 		footer 		footer';
}

/* ---------- HEADER ----------*/
.header {
	border-radius: 20px;
	grid-area: header;
	padding: 20px;
	background: var(--nav);
	box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.952);
}

.header .logo {
	margin-bottom: 20px;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: 3px;
}

.logo h1 {
	font-size: 45px;
	color: var(--font);
}

.header .logo img{
	max-width: 150px;
	max-height: 150px;
}

.logo .iniciales-logo {
	padding: 5px;
	border: 2px solid #000;
	display: inline-block;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	color: var(--font);
}

.menu {
	display: flex;
	justify-content:space-around;
}

.menu a {
	padding: 10px;
	color: var(--font);
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	width: 100%;
	text-align: center;
	transition: 0.2s ease all;
	font-size: 16px;
}

.menu a:hover {
	background:var(--hover);
	color: var(--font);
}



/*---------- FOOTER ----------*/

.contenedor .footer {
	margin-top: 30px;
	border-radius: 20px;
	background-color: var(--paneles);
	color: var(--font);
	font-size: 20px; 
	font-weight: bold;
	grid-area: footer;
	padding: 25px; 
	text-align: center;
	box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.952);
}

.contenedor .footer i{
	padding: 15px;
	color: var(--font);
}


/*---------- RESPONSIVE ----------*/


@media screen and (max-width: 1400px){
	.articulo.destacado .contenedor-thumbnail {

		max-height: 100%;
	}


	.articulo.destacado .contenedor-thumbnail a img{
		border-bottom-right-radius: 20px;
		border-top-right-radius: 20px;
	}

}



@media screen and (max-width: 1200px){
	body{
		font-size: 14px;
	}

}
@media screen and (max-width: 992px){
	body{
		font-size: 16px;
	}

	.header{
		font-size: 12px;
	}

	.contenedor {
		grid-template-areas:
		'header			header   	header'
        'formulario     formulario   formulario'
		'footer	 		footer 		footer';
	}

	.articulo.destacado .contenedor-thumbnail a img{
		border-bottom-right-radius: 20px;
		border-top-right-radius: 20px;
	}
}
@media screen and (max-width: 768px){
	.articulo.destacado {

		grid-template-columns: 1fr;
	}

	.articulo.destacado .contenedor-thumbnail{
		height: 16em;
	}

	.articulo.destacado .contenedor-thumbnail a img{
		border-bottom-right-radius: 20px;
		border-bottom-left-radius: 20px;
		border-top-right-radius: 0;
	}
}
@media screen and (max-width: 576px){
	body{
		font-size: 10px;
	}

	/* HEADER */
	.menu {
		display: initial;
	}
	
}