* {
	box-sizing: border-box;
	line-height: 1;
}
body {
	font-family: 'Open Sans', sans-serif;
}
section {
	min-height: calc(100vh - 40px);
	width: 100%;
	position: relative;
	padding: 20px;
}
article {
	text-align: center;
}
figure {
	display: inline-block;
	max-width: 300px;
	margin: 0 0 40px;
}
img {
	width: 100%;
	height: auto;
}
h1 {
	color: #3a83bf;
	font-size: 22px;
	margin: 0 0 5px 0;
}
h3 {
	color: #3a83bf;
	font-size: 14px;
	margin: 0 0 20px 0;
}
h2 {
	color: #202020;
	font-size: 18px;
	font-weight: 400;
	margin: 0 0 5px 0;
}
h4 {
	color: #202020;
	font-size: 10px;
	font-weight: 400;
	margin: 0;
}
a {
	color: #b1b1b1;
	text-decoration: none;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
a:hover,
a:focus {
	color: #535353;
	text-decoration: none;
}

@media only screen and (min-width: 1024px) {
	article {
		position: absolute;
		width: 100%;
		top: 50%;
		left: 0;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	h1 {
		font-size: 40px;
	}
	h3 {
		font-size: 20px;
		margin: 0 0 40px 0;
	}
	h2 {
		font-size: 30px;
	}
	h4 {
		font-size: 15px;
	}
}
