@charset "utf-8";
/* CSS Document */

h1{
  font-family: Arial;
  color: #80b51b;
  font-size: 20px;
  font-weight: normal;
}

@media (orientation:landscape){
html{
	background-image:url(../img/fondo_horizontal.jpg);
  background-repeat: no-repeat;
  background-size: cover;
	height:100%;
  text-align: center;
}
img{
display:block;
margin:auto;
margin-top: 10%;
}
#logohorizontal{
	display:block;
}
#logovertical{
	display:none;
}
}
@media (orientation:portrait){
html{
	background-image:url(../img/fondo_vertical.jpg);
  background-repeat: no-repeat;
  background-size: cover;
	height:auto;
  text-align: center;
	}
img{
display:block;
margin:auto;
margin-top: 20%;
}
#logohorizontal{
	display:none;
}
#logovertical{
	display:block;
	margin-top:20%;
}
}
