html, body {
	margin: 0;
	height: 100%;
	overflow: hidden;
}

body {
	font-family: 'Montserrat', sans-serif;
	
	background-color: black;
	position: fixed;
	width: 100%;
	height: 100%;
	
	animation: fade-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

@keyframes fade-in {
	from 	{ opacity: 0; }
	to		{ opacity: 1; }
}

span {
	margin: 0;
	white-space: nowrap;
}

ul {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

ul li {
	padding: 0 8px;
}

a {
	text-decoration: none;
	color: white;
	transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

a:hover {
	color: rgb(100, 100, 100);
}

.bar {
	display: block;
	overflow: hidden;
	font-size: 20pt;
	position: absolute;
	background: black;
	width: 100%;
	z-index: 2;
	color: white;
	padding-top: 2vh;
	padding-bottom: 2vh;
	border-bottom: 1px solid white;
}

#bottom-bar {
	border-bottom: none;
	border-top: 1px solid white;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
}

#background-video {
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
}

#content {
	font-size: 30pt;
	color: white;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 1;
	padding: 100%;
	
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 4px, transparent 1%) center, linear-gradient(rgba(0, 0, 0, 0.25) 4px, transparent 1%) center, rgba(0.25, 0.25, 0.25, 0.25);
	background-size: 5px 5px;
}

.hidden {
	display: none;
}