body {
	background-color: black;
	margin: 0;

	color: #FCFDCD;
	font-size: 24pt;
}

a {
	color: #FCFDCD;
	font-size: 24pt;
}

.main {
	display: flex;
}

.main-container {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}

.side-cover {
	position: absolute;
	width: 1024px;
	height: 100%;
	
	background-image: none;
	z-index: 1;
}

.center-container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

.front-main {
	max-width: 1024px;
	width: 100%;
	object-fit: cover;
	object-position: 50% 0;
	z-index: 0;
}

.black-bar {
	flex: 1;
	height: 100%;
	margin: -1px;
	background-color: black;
}

#video-container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	z-index: -2000;
}

.water-video {
	position: fixed;
  min-height: 120vh;
}

.content {
	position: absolute;
	top: 99vh;
	height: 300px;
	width: 100%;
	background-color: black;

	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 100px;
}

.logo {
	transition: transform 0.2s
	z-index: -10;
}

@media (max-width: 989px) {
	.black-bar {
		display: none;
	}

	.logo {
		margin-top: 10vh;
	}

	.front-main {
		width: 150%;
	}
}

@media (orientation: landscape) and (min-width: 1023px) {
	.side-cover {
		background-repeat: no-repeat;
		background-image: url('assets/leftborder.png'), url('assets/rightborder.png');
		background-position: left, right;
		background-size: auto 100%, auto 100%;
	}

	.logo {
		margin-bottom: -20vh;
		width: 700px;
	}
}

@media (min-width: 1200px) {
	.logo {
		margin-top: 10vh;
		margin-bottom: -10vh;
		width: 900px;
	}

	.side-cover {
		width: 1440px;
	}

	.front-main {
		max-width: 1440px;
	}

	.center-container {
		width: 1440px;
	}
}

@media (max-width: 1023px) and (max-height: 800px) {
	.main-container {
		height: 150vh;
	}

	.content {
		top: 149vh;
	}

	.logo {
		margin-bottom: -20vh;
		width: 800px;
	}
}

@media (min-width: 1200px) and (max-height: 800px) {
	.water-video {
		min-width: 100%;
	}

	.main-container {
		height: 130vh;
	}

	.content {
		top: 129vh;
	}

	.logo {
		margin-bottom: -20vh;
		width: 900px;
	}
}