
body {
	font-family: Lato, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	margin: 0;
}
h1 {
	line-height: 1;
	font-size: 45px;
	font-weight: 300;
	color: #015266;
	margin: 0;
}
h2 {
	line-height: 1;
	font-size: 25px;
	font-weight: 400;
	color: #015266;
	margin: 0;
}
h3 {
	line-height: 1;
	font-size: 20px;
	font-weight: 400;
	margin: 0;
}
a, a:active, a:visited {
	color: #015266;
}
li {
	margin-bottom: 8px;
}
.text-center {
	text-align: center;
}
.summary-text {
	font-size: 18px;
}
nav {
	position: fixed;
	width: 100%;
	height: 64px;
	color: #FFF;
	font-size: 20px;
	font-weight: 300;
}
.nav-content {
	position: relative;
	height: 100%;
	display: flex;
	justify-content: space-between;
	z-index: 1;
}
.nav-content > div {
	margin: auto 15px;
}
#nav-title {
	padding-left: 15px;
}
#nav-links {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
#nav-links a {
	margin: 0 15px;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
#nav-links img {
	opacity: 0.8;
	max-height: 25px;
	max-width: 100%;
}
#nav-bg {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: 100%;
	background: #000;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
#nav-bg.opaque {
	opacity: 0.8;
}
@media (max-width: 700px) {
	#nav-title {
		display: none;
	}
	#nav-links {
		flex-grow: 1;
	}
	#nav-links a {
		margin: 0 12px;
	}
}
.banner {
	background-color: #012c38;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 340px;
	background-image: url('bannerbg.jpg');
	background-position: top center;
	padding: 0 15px;
}
.banner h1 {
	font-size: 85px;
	color: #FFF;
	margin-bottom: 15px;
}
.banner h2 {
	font-size: 20px;
	color: #FFF;
}
@media (max-width: 600px) {
	.banner h1 {
		font-size: 60px;
	}
}
.section {
	margin: auto;
	padding: 25px 15px;
	max-width: 980px;
}
.section.narrow {
	max-width: 640px;
}
.project-info {
	display: flex;
	justify-content: center;
}
.project-info > div {
	margin: 0 20px;
}
.project-info .screenshot-wrapper {
	width: 400px;
	text-align: center;
}
.project-info img {
	max-width: 100%;
	height: auto;
}
@media (max-width: 960px) {
	.project-info {
		flex-direction: column;
		max-width: 650px;
	}
	.project-info .screenshot-wrapper {
		width: auto;
		margin-bottom: 30px;
	}
}
.copyright-notice {
	font-size: 12px;
}