body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
.main {
	flex-grow: 1;
}


/* Home page */

.hero-half {
	min-height: 75vh;
}

.home-hero-text {
	display: flex;
	align-items: center;
}

.home-hero-text h1 {
	font-size: 70px;
}
.home-hero-text .subtitle {
	font-size: 40px;
}

.home-hero-image {
	background-image: url(/static/survey/img/engin-akyurt--AXzdbotjKI-unsplash.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}



/* Layout utils */

.valign-center {
	display: flex;
	align-items: center;
}
.halign-center {
	display: flex;
	justify-content: space-around;
}


/* General */

.section-red-top {
	border-top: 0.5rem solid #f14668;
}
