body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-flow: column nowrap;
	font-family: 'Roboto', sans-serif;
}

* {
	box-sizing: border-box;
}

/* TOPBAR */

#topbar {
	padding: 6px;
	background-color: #3c407d;
	border-bottom: 1px solid #ddd;
	display: flex;
	justify-content: center;
}

/* HEADER */

header {
	padding: 16px;
	background: aliceblue;
	border-bottom: 1px solid #ddd;
	display: flex;
	flex-flow: row nowrap;	
	align-items: center;
}

#icon {
	width: 48px;
	height: 48px;
	margin-right: 16px;
	background-image: url(/common/images/logo.png);
	background-size: contain;
	background-repeat: no-repeat;
}

#title {
	flex-grow: 1;
	color: #0066cc;
	font-size: 32px;
	font-weight: bold;
	text-decoration: none;
}

/* BODY */

.page-content {
	flex-grow: 1;
	display: flex;
	flex-flow: column nowrap;	
}

section {
	min-height: 240px;
	padding-top: 32px;
	padding-bottom: 64px;
}

section:nth-child(2n) {
  background: #3c407d;
  color: #fff;
}

.section-title {
	margin-bottom: 32px;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}

.section-content {

}

/* FOOTER */

footer {
	min-height: 80px;
	padding: 16px;
	background: aliceblue;
	border-top: 1px solid #ddd;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}

#credits {
	text-align: center;
}