html,
body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

html {
    color: #fff;
    font-size: 1em;
	font-family: 'Lato', sans-serif;
    line-height: 1.4;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
	background: linear-gradient(135deg, #1a6195 0%, #2999ec 80%);
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
}

main {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}
.centered {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	align-items: center;
}
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

strong {
	font-weight: 600;
}
.light {
	font-weight: 100;
}
h1 {
	font-size: 2rem;
	font-weight: 600;
	margin: 0;
	padding-bottom: 1rem;
	
}
p {
	font-size: 1rem;
	margin: 0;
	padding: 0.875rem 1em 0;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}
a.mail_link {
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	background-image: url(../images/email_icon.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 1.2rem 1.2rem;
	position: absolute;
	top: 1rem;
	right: 1rem;
}
@media only screen and (min-width: 375px) {
	html {
		font-size: 1em;
	}
}

@media only screen and (min-width: 576px) {
	html {
		font-size: 1.25em;
	}
}

@media only screen and (min-width: 768px) {
	html {
		font-size: 1.5em;
	}
}
@media only screen and (min-width: 992px) {
	html {
		font-size: 2em;
	}
}
@media only screen and (min-width: 1200px) {
	html {
		font-size: 2.25em;
	}
}