@charset "utf-8";
@charset 'iso-8859-15';
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Verdana", Arial, Helvetica, sans-serif;
	background-color: #222; 
}
.contenedor {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}
.fondo {
	position: absolute;
	width: 100%;
	height: 100vh;
	background-image: url(img/fondo.JPG); 
	filter: blur(6px);
}
.logo {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 150px;
	width: 100%;
	height: 100vh;
}
.pie {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 180px;
}
/*.copyrightText a {
  color: #81ff00;
  -webkit-text-stroke: .6px #000;
  text-shadow: 1px 2px 2px #222;
  font-weight: 600;
  text-decoration: none;
}*/
.contenido {
	position: relative;
	/*background: #fff;*/
	background-image: url(img/fondo.JPG);
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 1rem;
	text-align: center;
	border-radius: 15px;
}
.redes {
	margin: auto;
	width: 100%;
	padding: 5px 10px 0 0;
	height: auto;
	text-align: right;
	float: left;
}
.redes img {
	width: 33px;
	height: auto;
}
.menu-horizontal {
  margin-top: 20px;
  list-style: none;
  display: flex;
  justify-content: space-around;
  max-width: 1000px;
}
.menu-horizontal li a {
  display: block;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #555;
  background: #0005;
  padding: 5px 30px 5px 30px;
  color: #fc08;
  border-radius: 10px;
  text-decoration: none;
}
.menu-horizontal li a:hover {
  color: #fc0;
}
.menu-horizontal li:hover .menu-vertical {
  display: block;
  color: #fc0;
  border-radius: 10px;
}
.copyrightText {
	padding: 8px 5px;
  	border-top: 1px solid rgba(0, 0, 0, .1);
  	text-align: center;
}
.copyrightText p {
	color: #666;
	font-size: 10px;
}


@media screen and (max-width: 360px){
	.logo {
		width: 328px;
		height: 127px;
	}
}