body {
  background-color: rgba(15, 17, 38, 1);
  margin: 0;
  padding: 0;
}

.title-bar {
	top: 0;
	left: 0;
	
	width: 96vw;
	
	background-color: black;
	color: white;
	
	display: flex;
	align-items: center;
	justify-content: space-between;
	
	z-index: 3;
	padding: 1vw 2vw;
}

.logo {
		/* height: 8vw; */
		height: clamp(0px,8vw,10vh);
}

.menu-buttons {
	display: flex;
	justify-content: flex-end;
	gap: 3vw;
}

.menu-buttons a:link,.menu-buttons a:visited,.menu-buttons a:hover {
		color: white;
		font-family: Trebuchet MS, Tahoma, Verdana;
		font-size: clamp(0px,2.5vw,3.125vh);
		/* font-size: 2.5vw; */
		text-decoration: none;
}

.menu-buttons a:hover,.menu-buttons a:active {
		color: yellow;
}

.menu-buttons button:hover {
	background: #333;
}

.video-wrap {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	display: flex;
	justify-content: center;
}

.video-wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 10%, rgba(15, 17, 38, 0) 90%, rgba(15, 17, 38, 1) 100%);
	z-index: 2;
	pointer-events: none;
}

.video-wrap video {
	width: clamp(50%,120vh,100%);
	/* width: 50%; */
	height: auto;
	display: block;
	z-index: 1;
}

h1 {
	font-family: Trebuchet MS, Tahoma, Verdana;
	font-size: 5vh;
	color: white;
	margin: 10px 10px 10px 10px;
}

p {
	font-family: Trebuchet MS, Tahoma, Verdana;
	font-size: 3vh;
	color: white;
	margin: 10px 10px 10px 10px;
}