
* {
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	height: 100%;
}

main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 25px 4%;
	margin: 0 auto;
	width: 90%;
	height: 100%;
	max-width: 600px;
	text-align: center;
}

h1 {
	display: block;
	text-align: center;
}

h1 img {
	display: block;
	width: 30%;
	height: auto;
	margin: 0 auto;
}	

hr {
	display: block;
	border: none;
	height:1px;
	background: #000000;
	margin: 35px 0;
}

h3 {
	font-weight: 700;
	color: #037b3f;
	text-align: center;
}

@media (min-widtH: 1024px) {
	body {
		font-size: 20px;
	}
	
	hr {
		margin: 50px 0;
	}
}
	
	