/* persistent page elements like vid background and nav buttons */

video {
	object-fit: cover;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

iframe {
  display: flex;
  justify-content: center;
  align-content: center;
  max-width: 100%;
  margin: 0 auto;
}

#hero {
	width: 100%;
	height: 200px;
	max-height: 20vh;		
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: sans-serif;
	text-shadow: 3px 3px 4px #000000;
	z-index: 0;
	clip-path: polygon(30% 0%, 100% 0, 100% 70%, 70% 100%, 0 100%, 0% 30%);
	transition: clip-path .25s;
}

#bgblur {
	filter: /*blur(0px)*/ saturate(115%) brightness(125%);
	-webkit-filter: /*blur(0px)*/ saturate(115%) brightness(125%);
	width: 100%;
	height: 200px;
	max-height: 20vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	z-index: 0;
	opacity: 0.5;
}

#bluetint {
	position: absolute;
	width: 100%;
	height: 200px;
	max-height: 20vh;
	background-color: #0097ff7d;
}

#hero > img {
	filter: saturate(115%) brightness(125%);
	-webkit-filter: saturate(115%) brightness(125%);
	clip-path: polygon(0% 0%, 100% 0, 100% 100%, 100% 100%, 0 100%, 0% 0%);
	transition: clip-path .25s;
	
}

.musicplayer {
  display: flex;
  justify-content: center;
  align-content: center;
  max-width: 100%x;
  margin: 0 auto;
}

 .navbutton {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 211px;
  aspect-ratio: 211 / 40;

  flex: 0 0 auto;

  background-image: url("/menus/button-D-small.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  text-decoration: none;
  font-family: Melee;
  font-size: 24px;
  color: #98722a;
}

.navbutton:hover {
  background-image: url("/menus/button-A-small.png");
  color: black;
}

.navbutton-text {
  pointer-events: none; /* prevents weird hover flicker */
}

.navbuttonscenter {
  display: flex;
  flex-direction: row;
  justify-content: center;   /* centers the whole row */
  gap: 20px;                 /* space between buttons */
  /* margin: 20px auto; */
  flex-wrap: wrap;
}

/* .navbuttons {
  display: absolute;
	margin: 0 auto;
	justify-content: center;
	-moz-user-select: none;
	user-select: none;
} */