@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,700,700i');

body {
	font-family: 'Roboto', sans-serif;
}

h1 {
	color: #001f5b;
	font-size: 35px;
	font-weight: 400;
	line-height: 1.1;
	margin: 15px 0 0 0;
}

h3 {
	color: #3eb049;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.1;
}

.main {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	height: 100vh;
}

.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-direction: normal;
	-moz-box-direction: normal;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	-moz-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.logo {
	max-width: 600px;
}