* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, body {
	height: 100%;
}

body {
	font-family: "Open Sans", sans-serif;
	font-weight: 300;
	background-color: #111111;
	color: #ffffff;
}

.main-container {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-align: center;
}

.bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.bg-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(17, 17, 17, 0.55) 0%,
		rgba(17, 17, 17, 0.25) 35%,
		rgba(17, 17, 17, 0.55) 70%,
		rgba(17, 17, 17, 0.85) 100%
	);
	z-index: 1;
}

#wrapper {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 2rem 1.5rem;
}

.center {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

header {
	padding-top: 2rem;
}

.site-title {
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.site-content {
	margin-top: 12vh;
}

.heading {
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.3;
	margin-bottom: 0.75rem;
}

.description p {
	font-size: 0.95rem;
	font-weight: 300;
	opacity: 0.9;
}

footer {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 1.5rem 1.5rem 2rem;
	text-align: center;
	font-size: 0.85rem;
	font-weight: 300;
	opacity: 0.85;
}

@media (max-width: 600px) {
	.site-title {
		font-size: 1.3rem;
	}
	.heading {
		font-size: 1.4rem;
	}
	.site-content {
		margin-top: 8vh;
	}
}
