BODY {
	margin: 0;
	padding: 0;
	background-image: url(images/background.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	height: 100vh;
	font-family: 'Montserrat', sans-serif;
}

IMG {
	max-width: 100%;
}

.body-overlay {
	background-color: white;
	opacity: .2;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
}

.pattern {
	position: absolute;
	top: 0;
	height: 100vh;
	width: 15%;
	max-width: 150px;
	background-image: url(images/pattern.svg);
	background-repeat: repeat-y;
	background-size: contain;
}

.pattern.left {
	transform: rotate(180deg);
	left: 0;
}

.pattern.right {
	right: 0;
}

.content {
	margin: auto;
	width: 60%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

a.download {
	color: white;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	letter-spacing: .03em;
	font-size: 15px;
	display: inline-block;
	border: 3px solid white;
	padding: 0.6em 1.0em;
	margin-top: 10vh;
	text-shadow: 0px 1px 3px rgba(0,0,0,.3);
}

a.download:hover {
	background-color: white;
	color: #2DB3B0;
	text-shadow: none;
}

.mes-container {
	margin-top: .7em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mes-single {
	margin: .3em;
}

@media screen and (max-width: 500px){
	a.download {
		color: white;
		text-transform: uppercase;
		text-decoration: none;
		font-weight: bold;
		letter-spacing: .03em;
		font-size: 13px;
		display: inline-block;
		border: 3px solid white;
		padding: 0.6em 1.0em;
		margin-top: 5vh;
	}
}