@charset "utf-8";
/* CSS Document */


*{
	padding: 0px;
	margin: 0px;	
}


body{
	background: #FFEE95;
	
}


#main{	
	margin: auto;
	width: 80%;
	height: auto;
	display: grid;
	grid-gap: 0px;
	grid-template-columns: 20% 80%;
	grid-template-rows: 20% 60% 20%;
	background: #FFEE95;
	
	
	
}

#main > div{
	
	
	/*display: flex;
	justify-content: space-around;
	/*align-content: center;
	align-items: center;*/
	
	
	
}

#logo{	
	grid-column: 1/2;
	text-align: center;	
	line-height: 150px;
	
}





#cabecera{
	grid-column: 2/3;
	display:flex;
	justify-content: space-around;
	align-items: center;
	text-align: center;
	
	
	
}

#cabecera > div{
	background: green;
	
}
#cabecera h1{
	width: 60%;
	padding-bottom: 10px;
	
}

#cabecera a{
	text-decoration-line: none;
	color: green;
}

#lateral{
	
	padding: 10px;
	grid-column: 1/2;
	
}

#lateral ul li{
	padding: 20px;
	list-style: none;
}

#lateral ul li a{
	text-decoration-line: none;
	color: blue;
	
}

#centro{
	
	text-align: center;	
	grid-column: 2/4;
	
}


#centro h2{
	
	color: #0049A2;
	
}


#productos{
	color: black;
	width: 90%;
	border-style: double;	
	text-align: left;	
}



#destacados{
	grid-column: 2/3;	
	text-align: center;
}



/* MENUUU */

#menu{
	display: inline;
	
	width: 50%;
}

#menu a{
	padding: 10px;
	background: #F0CE78;
	text-decoration-line: none;
	color: black;
	border-radius: 10px 10px;
	
}


#menu a:hover{
	background: #EC9E2E;
	
}


#slider{
	
	padding-top: 20px;
	
}


@media screen and (max-width:800px ) {
	

	#main{		
		height: 100%;		
		margin: 0px;
		display: grid;
		grid-gap: 0px;
		grid-template-columns: 20% 80%;
		grid-template-rows: 5% 20% 60% 20%;
		background: #FFEE95;
	
	

	}
	
	#cabecera{
		grid-column: 1/4;
		display:flex;
		justify-content: space-around;
		align-items: center;
		text-align: center;	
	
	
}
	
	#centro{		
		grid-column: 1/4;
		padding: 10px;
		
	}
	
	#logo{
		grid-column: 1/3;
		padding: 0px;
	}
	
	#tamesi{
				
		padding: 0px;
		
	}
	
	#lateral{
		
		display: none;
		
	}
	
	#destacados{
		
		display: none;
		
	}
	
	#menu{
		text-align: center;
		
	}
	#menu a{
		display: inline-block;		
		width: 60%;
		
	}
	
	
	
	#cabecera h1{
		text-align: center;
		width: 40%;
		font-size:1.5rem;
		
	}
	
	#lateral ul li{
		
		padding: 0px;
	}
	
	#footer{
		padding-top: 10px;
		background: white;
		
		
	}
}



