/* splash */
#video-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--warm-gray);
	z-index: 200000;
	overflow: hidden;
}
#intro-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.video-prompt {
	position: absolute;
	bottom: 10%;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
	pointer-events: none;
	z-index: 200001;
}
	
.content-area {
	flex-grow: 1;
	display: flex;
	align-items: center;
	padding: 0 10%;
}
.headline {
	font-size: 4rem;
}
.sub-headline {
	font-size: 1.2rem;
}
.graphic-container {
	display: flex;
	justify-content: center;
	align-items: center;
}
.splash-img {
	max-width: 75%;
	height: auto;
}
footer {
	padding: 30px 5%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.logo-img-splash {
	max-height: 40px;
}

.btn-splash {
	background: var(--dark-green) !important;
	border-color: var(--dark-green) !important;
	color: white !important;
	font-weight: bold;
	font-size: 1.1rem;
	animation: pulse-animation 3s infinite;
	transition: all 1s ease;
}
.btn-splash:active {
	transform: scale(0.9);
}
