#menubutton {
	display: none;
}
nav,
nav ul {
	color: var(--light);
}
nav {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
    z-index: 1;/*WAS 2*/
}
nav ul:not(.simple-audio-player ul) {
    display: flex;
    justify-content: space-evenly;
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 50%;
}
nav ul ul {
	margin-left: -9999px;
	position: absolute; /*WITHOUT THIS, THE MENU ITEMS "JUMP" ON HOVER*/
	flex-direction: column;
	padding: .5em;
	border-radius: 0 0 10px 10px;
	box-shadow: 3px 3px 4px 4px rgba(0, 0, 0, .5);
}
nav li:hover ul,
.nav li.sfHover ul {
	margin-left: 0;
}
nav ul a {
	text-decoration: none;
	color: inherit;
	display: block;
	padding: 1em;
	transition: .3s;
}
nav ul a:hover {
	color: var(--darkContrast);
}
nav .current a {
	opacity: .3;
	cursor: context-menu;
}
a[href*="parent-"] {
    cursor: pointer;
    pointer-events: none;
}
nav li:not(.simple-audio-player li) {
	position: relative;
	min-width: 7em;
	text-align: center;
	text-transform: uppercase;
    font-size: .9em;
    letter-spacing: 3px;
}
nav .credits {
	display: none;
}