@media (orientation: landscape) {
	#mainBannerContainer {
		min-height: 100vh;
	}
}
@media (orientation: portrait) {
	#mainBannerContainer {
		min-height: 60em;
	}
}
#mainBannerContainer {
	align-items: center;
	background-attachment: fixed;
	background-image: url("../images/index-background.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: inset 0em 0em 2em 0.25em black;
	display: flex;
	filter: brightness(0.0);
	justify-content: center;
	animation-name: mainBannerContainerFadeIn;
	animation-delay: 0.2s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
}
#mainBannerTextContainer {
	height: fit-content;
	width: fit-content;
	margin: 0vw 10vw;
}
.mainBannerText {
	color: #FFFFFF;
	position: relative;
	font-family: "Geoform";
	font-size: 4em;
	text-shadow: 0em 0.25em 1em rgba(0, 0, 0, 1);
	opacity: 0.0;
	animation-fill-mode: forwards;
}
.mainBannerText:nth-child(1){
	animation-name: mainBannerTextFadeIn;
	animation-delay: 1.5s;
	animation-duration: 1s;
}
.mainBannerText:nth-child(2){
	animation-name: mainBannerTextFadeIn;
	animation-delay: 2s;
	animation-duration: 1s;
}
.mainBannerText:nth-child(3){
	animation-name: mainBannerTextFadeIn;
	animation-delay: 2.5s;
	animation-duration: 1s;
}
.mainBannerText:nth-child(4){
	animation-name: mainBannerTextFadeIn;
	animation-delay: 3s;
	animation-duration: 1s;
}

#mainContainer {
	align-items: center;
	display: flex;
	flex-direction: column;
}
.mainHeader {
	color: #A72507;
	display: flex;
	font-family: "Geoform";
	font-size: 5em;
	justify-content: center;
	margin: 0.5em 0em;
	text-shadow: 0em 0.05em 0.1em #bfafac;
}
.mainTextContainer {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.mainButton {
	background-color: #F55430;
	border-radius: 1em;
	color: white;
	font-family: "Basic";
	font-size: 1.5em;
	padding: 0.25em 1em;
	text-decoration: none;
	transition: 0.1s all;
}
.mainButton:hover {
	background-color: #F77A5E;
	transition: 0.1s all;
}
.mainText {
	color: #222222;
	font-family: "Basic";
	font-size: 1.5em;
	max-width: 90vw;
	text-align: center;
}
.mainLogoText {
	font-family: "Mont";
	text-transform: uppercase;
	white-space: pre;
}

@keyframes mainBannerContainerFadeIn {
	0% {
		filter: brightness(0.0);
	}
	100% {
		filter: brightness(1.0);
	}
}
@keyframes mainBannerTextFadeIn {
	0% {
		top: 0.25em;
		opacity: 0.0;
	}
	100% {
		top: 0em;
		opacity: 1.0;
	}
}