:root {
	--nav-height: 75px;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	width: 100vw;
	height: calc(100vh - var(--nav-height));
	height: calc(100svh - var(--nav-height));
	overflow: hidden;
	position: relative;
}

/* Navigation */
.nav-container {
	background-color: black;
	height: var(--nav-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0rem 1.5rem;
}

.nav-logo {
	width: 80px;
	/* height: 40px; */
	padding: 0.75rem 0rem;
	object-fit: contain;
}

.nav-button {
	all: unset;
	display: inline-block;
	cursor: pointer;
	text-align: center;

	background-image: url("./public/images/button-bg.svg");
	background-size: 100% 100%;
	padding: 1rem;
	font-size: 0.875rem;
	font-family: "Archivo", sans-serif;
	font-style: normal;

	line-height: 1.25rem;
	font-weight: 600;
	color: #00ff01;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-button:hover {
	opacity: 95%;
}

.nav-button:active {
	transform: scale(0.95);
}

/* Content */
.teaser-container {
	position: relative;
	width: 100%;
	height: 100%;
	/* background-color: aqua; */
}

#teaser-video {
	position: absolute;
	/* 
		top: 50%;
   	left: 50%;
	  transform: translate(-50%, -50%);
	*/
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;

	top: 0;
	left: 0;
}

.video-js video {
	object-fit: contain !important;
}
