
  /* Estilos adicionales aquí */
@font-face{
	font-family: "titulos";
	src:url("../assets/TrajanPro-Bold.otf");
}


*{
	margin: 0;
	padding: 0;
	box-sizing:  border-box;
	
}

.hero{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(rgb(12,3,51,.03),rgba(12,3,51,0.3));
	position: relative;
	padding: 0 5%;
	display: flex;
	align-items: center;
	justify-content: center;
}

nav{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px 8%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.logo{
	width: 250px;
	filter: drop-shadow(0 0 0.50rem #3d3d3d);
}

nav ul li{
	list-style: none;
	display: inline-block;
	margin-left: 40px;
}

nav ul li a{
	text-decoration: none;
	color:#fff;
	font-size: 17px;
	transition: 0.5s;
}

nav ul li a:hover{
	text-decoration: none;
	color:#000000;
	font-size: 17px;
}

.content{
	text-align: center;
}

.content a{
	color: #FFFFFF;
}

h1{
	color: #fff;
	font-family: "titulos";
	font-size: 48px;
}

.back-video{
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
} 

.showThis{
	display: none;
}




@media (min-aspect-ratio: 16/9){
	.back-video{
		width: 100%;
		height: auto;
	}
}

@media (max-aspect-ratio: 16/9){
	.back-video{
		width: auto;
		height: 100%;
	}
}

@media only screen and (max-width: 600px){
	.hideThis{
		display: none;
	}
	.showThis{
		display: block;
	}
}



/*
@media only screen and (max-width: 600px) {
nav{
	justify-content: center;
}


nav ul li a{
	text-decoration: none;
	color:#fff;
	font-size: 12px;
}

nav ul li a:hover{
	text-decoration: none;
	color:#000000;
	font-size: 14px;
}

nav ul li{
	margin-left: 14px;
}

h1{
	font-size: 36px;
}

}

*/