#headContainer {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}

#headImage {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: grayscale(0.5) contrast(0.6) brightness(0.4);
}

#headTitle {
	display: inline-block;
	position: fixed;
	text-align: center;
	width: 100vw;
	bottom: 50vh;
	transform: translateY(50%);
	padding: 0 50px 0 50px;
	font-size: var(--hugeText);
	font-weight: 700;
	font-style: italic;
	letter-spacing: 12px;
	color: var(--background);
}

#headTitle.short {
	top: 35%;
}

#headSpacer,
#headContainer {
	width: 100vw;
	height: 100vh;
}

#headSpacer {
	position: relative;
	z-index: 0;
}

#headSpacer.short,
#headContainer.short {
	height: 70vh;
}

#headTextContent {
	max-width: 600px;
	position: fixed;
	left: 50%;
	bottom: 10vh;
	transform: translate(-50%);
	padding-bottom: 20px;
	border-bottom: dashed 1px var(--background);
	color: var(--background);
}

.headDescription {
	display: inline-block;
	font-size: var(--tinyText);
	margin-bottom: 5px;
}

.headDescription:last-child {
	margin-bottom: 0;
}