@charset "UTF-8";

:root {
	--active-text-color: #F3F3F3;
	--disabled-text-color: #c7c7c7;
 	--active-filter: invert(98%) sepia(6%) saturate(344%) hue-rotate(222deg) brightness(116%) contrast(91%);
	--disabled-filter: invert(80%) sepia(0%) saturate(3%) hue-rotate(206deg) brightness(82%) contrast(86%);
	/* hsl values for the active color */
	--active-color-h: 198;
 	--active-color-s: 94%;
  	--active-color-l: 27%;
  	/* the defined active color*/
 	--active-color: 
 		hsl(var(--active-color-h), var(--active-color-s), var(--active-color-l));
 	--darker-active-color: 
 		hsl(var(--active-color-h), var(--active-color-s), calc(var(--active-color-l) - 20%));
 	--lighter-active-color: 
 		hsl(var(--active-color-h), var(--active-color-s), calc(var(--active-color-l) + 13%));
 	/* The color of most borders and trims */
 	--trim-color: hsl(var(--active-color-h), var(--active-color-s), calc(var(--active-color-l) + 13%));
 	--functional-font: tahoma;
 	--normal-text-color: black;
 	--normal-text-font: tahoma;
}

.hud {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0px;
    left: 0px;
}

.navbar {
	font-family: var(--functional-font);
    overflow: hidden;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 50px;
    background-image: linear-gradient(to bottom, var(--lighter-active-color), var(--active-color));
    justify-content: center;
    display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
    margin: auto;
}

.nav-dropdown {
    float: left;
    overflow: hidden;
}

.nav-dropdown .nav-dropbtn {
    font-size: 20px;
    line-height: 20px;
    color: var(--disabled-text-color);
    text-align: center;
    padding: 15px 20px 15px 20px;
    border: none;
    outline: none;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    cursor: pointer;
    /** Transition */
	background-size: 100% 200%;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 50%, var(--active-color) 50%);
    -webkit-transition: background-position .4s;
    -moz-transition: background-position .4s;
    transition: background-position .4s;
}

.nav-dropdown:hover .nav-dropbtn {
    background-position: 0 100%;
    color: var(--active-text-color);
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    left: 10%;
    z-index: 999;
    width: 80%;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    box-sizing: border-box;
    border-bottom: 3px solid var(--trim-color);
    border-left: 3px solid var(--trim-color);
    border-right: 3px solid var(--trim-color);
    justify-content: space-evenly;
}

.nav-dropdown-content a {
	float: left;
    color: var(--disabled-text-color);
    text-align: center;
    text-decoration: none;
	position: relative;
	z-index: 999;
	width: 20%;
	aspect-ratio:7/5;
	margin-top: 30px;
	margin-bottom: 30px;
	border-radius: 10px;
	box-sizing: border-box;
	overflow: hidden;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
	/** Animation */
	border: 0px solid var(--trim-color);
  	transition: 0.2s
}

.menu-label {
	font-size: 16px;
    line-height: 20px;
	background-color: rgba(0,0,0,0.6);
	padding: 10px;
	position: absolute;
	top: calc(100% - 40px);
	left: 0px;
	transition: .4s;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.nav-dropdown-content a:hover > .menu-label {
	top: 0px;
	color: var(--active-text-color);
}

.nav-dropdown-content a:hover {
	border: 2px solid var(--trim-color);
}

.nav-dropdown-background {
	background-color: black;
	position: absolute;
	z-index: 998;
	opacity: .8;
	width: 100%;
	height: 100%;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: flex;
}

/* Use a media query to modify for phones */
@media screen and (max-width: 767px) {
  .navbar {
  	display: none;
  }
}

/* Use a media query to modify for tablets */
@media screen and (min-width: 767px) and (max-width: 1023px) {
	.menu-label {
		font-size: 12px;
		line-height: 14px;
		background-color: rgba(0, 0, 0, 0.6);
		padding: 8px;
		position: absolute;
		top: calc(100% - 30px);
	}
}

/* Use a media query to modify for laptops */
@media screen and (min-width: 768px) {
}