* {
	margin:0;
	padding:0;
}
body {
	-webkit-font-smoothing: antialiased;
}
/*CONTENIDO WEB*/
.truco
{
	visibility:hidden;
	display:none;
}
section {
	position:absolute;
	width:100%;
	height: calc(100% - 60px);
	display:flex;
	justify-content: center;
	align-items: center;
}
section article {
	width:800px;
}
section article div, section article div img,nav{
	width:100%;
}
.imagen img {
	float:left;
	width:100%;
}
nav{
	display:flex;
	justify-content: center;
	align-items: center;
}
nav a{
	width:100px;
	height:60px;
	text-decoration:none;
	font-family:"Times New Roman", Times, serif;
	font-weight:bold;
	color:#000;
	padding-top:40px;
	margin-left: calc((800px - 200px) / 8);
	margin-right: calc((800px - 200px) / 8);
	text-align:center;
	z-index:98;
}
.gallego
{
	background-image: url('../img/gal.png');
	background-size:100%;
	background-repeat:no-repeat;
}
.castellano
{
	background-image: url('../img/es.png');
	background-size:100%;
	background-repeat:no-repeat;
}
.gallego:hover , .castellano:hover
{
	opacity:0.8;
}
footer{
	position:fixed;
	width:100%;
	bottom:0;
	padding: 0 0 1% 0;  
	margin-top:30px;
	 -moz-osx-font-smoothing: grayscale;
  	text-rendering: optimizelegibility;
	overflow:hidden;
	z-index:99;
}
footer p{
	width:100vw;
	margin:1% 0 0 0;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:0.6em;
	text-decoration:none;
	color:#000000;
	visibility:visible;
	text-align:center;
}
/*codigo para mostrar el menu maximizado u minimizado segun tamaño de pantalla*/
@media screen and (max-width:1000px ) {
	nav a{
		width:80px;
		height:50px;
		padding-top:30px;
		margin-left: calc((800px - 200px) / 10);
		margin-right: calc((800px - 200px) / 10);
	}
}
@media screen and (max-width:500px ) {
	nav a{
		width:75px;
		height:45px;
		padding-top:30px;
		margin-left: calc((800px - 200px) / 12);
		margin-right: calc((800px - 200px) / 12);
	}
}
