* {
	box-sizing(border-box);
}
*, *:before, *:after {
    -webkit-text-size-adjust: none;
}
body {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	background: #fff;
	text-align: center;
	-webkit-font-smoothing: antialiased;
}
.container {
	height: 100vh;
}
header {
	padding: 20px 0;
}
header img {
	height: 100px;
}
.content-container {
	background-image: url(bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	height: calc(100vh - 140px);
	position: relative;
}
.content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 700px;
}
.content h1 {
	font-size: 18px;
	text-shadow: 0px 2px 1px #000;
	padding-bottom: 30px;
	line-height: 30px;
}
.content p {
	margin: 0 auto;
	max-width: 700px;
	font-size: 13px;
	line-height: 20px;
}
footer {
	padding: 30px 0;
	background: #000;
	color: #fff;
	font-size: 12px;
}