@font-face {
	font-family: Ubuntu;
	src: url('/ubuntu.ttf');
}

@media (max-width: 900px) {
	main {
		width: 100%;
	}
}

@media (min-width: 900px) {
	main {
		width: 60%;
	}
}

html {
	font-family: Ubuntu, Arial, sans-serif, serif;
	height: 100%;
}

body {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: white;
	text-align: justify;
}

main {
	max-width: 90%;
	margin: 0 auto;
	padding: 1em;
}

h1, nav, footer {
	text-align: center;
}

h1, h2, h3, h4 {
	font-weight: normal;
}

a {
	text-decoration: none;
	color: #b2c2d6;
}

main a {
	color: #005b99;
}

nav a:hover,
main a:hover {
	color: #a9d6e5;
}

a:hover {
	color: white;
	transition: 0.1s;
	cursor: pointer;
}

footer {
	margin-top: auto;
	padding: 1em;
	color: white;
	background: #3f6d8e;
}

footer h2 {
	margin-top: 0;
}

.col {
	display: inline-block;
	text-align: left;
	vertical-align: top;
	padding-right: 6em;
	padding-bottom: 1em;
}

ul {
	list-style-position: inside;
}

nav {
	background: #2f526b;
}

nav a {
	color: white;
}

nav #menu {
	padding: 10px 10px 10px 0;
	font-weight: bold;
}

#menu a {
	padding: 10px;
}

img {
	max-width: 100%;
	max-height: 100%;
}

details {
	overflow: hidden;
	display: block;
	border: solid 0px;
	border-radius: 8px;
	padding: 1em;
	box-shadow: -0.4em 0 #2f526b;
	margin-bottom: 1em;
	background: #b9d0e0;
}

details[open] summary {
	margin-bottom: 1em;
}

details a {
	color: black;
}

details a:hover {
	color: #2f526b;
}

img.gallery {
	border-radius: 3px;
	width: 250px;
	height: 200px;
}

img.gallery:hover {
	filter: brightness(80%);
	transition: 0.2s;
}
