/* CSS Page */

html{
	margin: 0px;
}
@font-face{ 
	font-family: "AvenirNext LT Pro Regular";
	src: url("../../data/fonts/Avenir1.otf") format("opentype");
}
body{
	font-family: "AvenirNext LT Pro Regular";
	background-color: black;
	padding: 0px;
	margin: 0px;
	height: 100%;
	width: 100%;
	margin-top: -70px;
}

/* Fin CSS Page*/



/** CSS HEADER **/
header{
	position: sticky;
	top: -1px;
	z-index: 1;
	margin-top: -10px;
	background: rgba(0,0,0,0);
	background: linear-gradient(90deg,rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 92%);
	background: -webkit-linear-gradient(90deg,rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 92%);
	background: -moz-linear-gradient(90deg,rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 92%);
}
header .top {
	padding: 10px;
}
header .top .header nav{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
header .top .header nav div a {
	height: 50px;
    align-items: center;
	margin-left: 20px;
	color: #ecf0f1;
	text-decoration: none;
	font-weight: bold;
	transition-duration: 200ms;
}
header .top .header div a:hover {
	color: white;
	text-decoration: none;
	transition-duration: 200ms;
	text-shadow: 0px 0px 2px white;
}
header .top .header{
	background-color: rgba(189, 195, 199,0.2);
	height: 50px;
	border-radius: 10px;
	box-shadow: 0px 0px 7px rgba(100, 100, 100, 0.2);
	backdrop-filter: blur(3px);
}
header .top .header nav ul li, nav div a{
	list-style-type: none;
	display: inline-flex;
}
header .top .header li{
	padding: 0px;
	margin-left: 20px;
}
header .top .header ul li a{
	color: #ecf0f1;
	text-decoration: none;
	transition-duration: 200ms;
}
header .top .header ul li a:hover{
	color: white;
	text-decoration: none;
	transition-duration: 200ms;
	text-shadow: 0px 0px 2px white;
}

@media (max-width: 1000px){
	header ul {
		display: none;
	}
}
/** Fin CSS Header **/