/* basics */
* {
	box-sizing: border-box;
}
html {
	height: 100%;
}
body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100%;
	margin: 0;
	padding: 60px 15px;
	background: #001c5e;
	color: #a1c2ec;
	font-family: 'Roboto', 'Arial', sans-serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
}
a,
a:link {
	color: #a1c2ec;
	text-decoration: underline;
}
a:visited,
a:active,
a:hover {
	color: #a1c2ec;
	text-decoration: none;
}
p {
	margin: 0;
	font-weight: 700;
}
img {
	max-width: 100%;
	height: auto;
}

/* content */
h1 {
	flex-shrink: 0;
	margin: 0 0 60px 0;
	font-size: 32px;
	font-weight: bold;
	line-height: 42px;
}
h1 a,
h1 a:link {
	text-decoration: none;
}
h1 span {
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	text-indent: -5000px;
	overflow: hidden;
}

@media (min-width: 426px) {
	a.link {
		font-size: 36px;
		font-weight: 700;
		line-height: 44px;
	}
}
