@charset "utf-8";
*{ /*Toda la pagina web*/
	margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

.encabezado{ /*Encabezados de las paginas*/
	height: 70px;
  	display: flex;
  	flex-direction: column;
	background: #000;
}

.encabezado h1{
	font-family: "bahnschrift";
	padding-top: 20px;
	padding-bottom: 20px;
	color: #fff;
}

.menu{ /*Menus de las paginas*/
	height: 70px;
  	display: flex;
  	flex-direction: column;
	background: #000;
}

.menu table{
	padding: 10px;
	padding-top: 20px;
	margin:0 auto;
	border: 4px solid #000;
	border-radius: 80px;
}

.menu th{
	width: 200px;
	height: 20px;
	text-align: center;
	vertical-align: middle;
	border: 2px solid #000;
	background-color: #000;
	font-size: 18px;
	font-family: "bahnschrift";
	border-radius: 80px;
}

.menu th a{
	padding: 0px;
	color: #fff;
}

.menu th:hover{
	background:#fff;
	border: 2px solid #fff;
	cursor: pointer;
	transform: translateY(-10px);
}

.menu th:hover a{
	padding: 0px;
	color: #000;
}

.menu .activo{
	border: 2px solid #fff;
	background-color: #fff;
}

.menu .activo a{
	color: #000;
}

.background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    z-index: -1;
  }

/*Pie de pagina*/
.pie{
	height: 60px;
  	flex-direction: column;
	background: #00a3e0;
	padding-top: 20px;
}

.pie p{
	color: #fff;
	font-family: "bahnschrift";
}

