/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Body */
body {
	font-family: 'Arial', sans-serif;
	height: 100%;
	line-height: 1.5;
	overflow-x: hidden;
	width: 100%;
}

/* Menu */
nav {
	background: rgba(255, 255, 255, .75);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .24);
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 1px;
	padding: 0 1.5rem;
	position: fixed;
	width: 100%;
	z-index: 1;
}

nav a {
	color: #000;
	padding: 1rem 1.5rem;
	text-decoration: none;
}

nav ul {
	display: flex;
	justify-content: center;
	align-items: stretch;
}

nav ul li a {
	color: #203864;
	display: block;
	transition: all .2s ease-in-out;
}

nav ul li a:hover {
	background: #203864;
	color: #fff;
}

nav ul li a.currentTab {
	box-shadow: inset 0 -.25rem 0 #203864;
}

/* General */
section {
	background: #203864;
	box-sizing: border-box;
	min-height: 100vh;
	padding: 10rem;
	width: 100vw;
}

section * {
	color: #fff;
	font-size: 1.25rem;
}

section h2 {
	font-family: 'Oswald', display;
	font-size: 3rem;
	margin: 0 0 1rem;
}

section h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	letter-spacing: 1px;
	margin: 0 0 1rem;
}

section p {
	margin: 0 0 1rem;
}

section a {
	border-bottom: 1px solid #203864;
	color: #203864;
	text-decoration: none;
	transition: all .25s ease-in-out;
}

section a:hover {
	border-bottom: 1px solid #00f;
	color: #00f;
}

section:nth-of-type(even) {
	background: #fff;
}

section:nth-of-type(even) * {
	color: #203864;
}

/* Splash section */
section#splash {
    background: url(../images/Ameland.jpg) no-repeat;
    background-size: cover;
    padding: 5rem 3rem;
}

section#splash header {
	display: inline-block;
	left: 50%;
	top: 50%;
	position: absolute;
	text-align: center;
	transform: translateX(-50%) translateY(-50%);
}

section#splash header h1 {
	color: #203864;
	font-family: 'Oswald', display;
	font-size: 3rem;
	margin: 0;
	text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
}

section#splash header h1 span {
	color: #203864;
	display: block;
	font-family: 'Oswald', display;
	font-size: 4rem;
	margin: 0;
	text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
}

/* Scroll arrow */
img#scroll {
	animation: bounce 1s ease-in-out infinite alternate;
	bottom: 2.5rem;
	cursor: pointer;
    left: 50%;
	position: absolute;
    transform: translateX(-50%);
}

@keyframes bounce {
    from {
		bottom: 2.5rem;
    }
    to {
		bottom: 3rem;
    }
}

section#team dl {
	margin: 0 0 1rem;
}

section#team dl dt {
	clear: left;
	display: list-item;
	float: left;
	margin: 0 .5rem 0 1.5rem;
}

section#team dl dt::after {
	content: ' - ';
}

section#station ul {
	margin: 0 0 1rem;
}

section#station ul li {
	list-style-type: disc;
	margin: 0 0 0 1.5rem;
}

section#gallery div#pictures figure {
	display: inline-block;
	margin: 2rem;
}

section#gallery div#pictures figure img {
	margin: .25rem 0;
	width: 550px;
}

