html, body {
	height: 100%;
	margin: 0;
}

body {
	font-family: 'Roboto', sans-serif;
	display: flex;
	flex-direction: column;
}

body, a {
	color: black;
}

header {
	text-align: center;
	background: url(../img/chalet/P1000876.jpg) center center no-repeat;
	background-size: cover;
	height: 65vw;
	min-height: 65vw;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	box-sizing: border-box;
}

header > h1 {
	font-size: 11vw;
	margin: 0;
}

header > h2 {
	font-size: 4vw;
	margin-top: 0;
}

body > header > nav {
	background-color: rgba(240,240,240,0.5);
	width: 100%;
}

body > header > nav > ul {
	display: flex;
	flex-direction: row;
	align-content: space-between;
	list-style-type: none;
	margin: 0 10vw;
	padding: 4px 0;
}

body > header > nav > ul > li {
	padding: 4px 12px;
	cursor: pointer;
	transition: all 0.1s linear;
	flex: 1;
	font-weight: bold;
}

body > header > nav > ul > li.selected {
	color: white;
	background-color: rgba(0,64,0,0.5);
	border-radius: 5px;
	cursor: default;
}

h1, th {
	font-family: 'Varela Round', sans-serif;
}

main {
	flex: 1;
	padding: 20px 10vw;
}

article {
	display: none;
	transition: all 0.1s linear;
}

article h2 {
	font-size: 1em;
	font-style: italic;
}

article img {
	width: 100%;
	max-width: 1000px;
	margin: 5vh auto;
	display: block;
}

article.selected {
	display: block;
}

p.center {
	margin-top: 20px;
	text-align: center;
}

a.external_link {
	display: inline-block;
	border-radius: 5px;
	color: white;
	background-color: #004000;
	padding: 10px 20px;
	font-size: 15pt;
	font-family: Varela Round;
	font-weight: bold;
	text-decoration: none;
	margin-left: auto;
	margin-right: auto;
}

div.gallery {
	display: none;
	max-width: 100% !important;
}

footer {
	padding: 10px;
	text-align: center;
	font-size: 10pt;
}

@media only screen and (max-width: 600px) {
	body > header > nav > ul {
		margin: 0 2vw;
		justify-content: space-between;
		font-size: 3vw;
	}

	body > header > nav > ul > li {
		flex: auto;
	}
}