* {
	box-sizing: border-box;
}

html {
	background: url(images/background.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

body {
	font: 16px Verdana, sans-serif;
	padding: 0;
	margin: 0;
}

#navigation {
	position: fixed;
	background-color: #5A7E96;
	width: 100%;
	height: 40px;
	top: 0;
	text-align: center;
}

#navigation a {
	font-weight: bold;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	height: 40px;
	padding: 10px;
}

#navigation a:hover {
	background-color: #8f91bf;
}

#navigation-mobile {
	display: none;
}

#navigation-mobile-links {
	display: none;
}

#navigation a.lang {
	border-left: 3px solid #8f91bf;
}

.content {
	margin: 0 20px;
	min-height: 100vh;
	padding: 60px 0 0 0;
}

.intro {
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-direction: column;
	min-height: 100vh;
}

.intro-middle {
	width: 100%;
	margin: auto;
}

.intro-photos {
	text-align: center;
}

.intro-photos img {
	max-width: 100%;
}

.intro-text {
	background-color: rgba(255, 255, 255, 0.8);
	text-align: center;
	padding: 20px;
	border-radius: 10px;
}

.article {
	display: flex;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
}

.article-photo {
	flex: 1;
	padding: 20px;
	text-align: center;
}

.article-photo img {
	max-width: 100%;
	object-fit: contain;
	border-radius: 10px;
	margin-top: 20px;
}

.article-photo img:first-child {
	margin-top: 0px;
}

.article-text {
	flex: 2;
	padding: 20px;
}

.photolib  img {
	display: inline-block;
	margin: auto;
	width: 48%;
}

.row {
	display: flex;
}

.col {
	flex: 1;
}

.center {
	text-align: center;
}

.small {
	font-size: small;
}

img.hide {
	display: none;
}

img.border-radius {
	border-radius: 10px;
}

@media only screen and (max-width: 700px) {

#navigation {
	display: none;
}

#navigation-mobile {
	display: block;
	position: fixed;
	background-color: #5A7E96;
	width: 100%;
	height: 40px;
	top: 0;
	text-align: center;
}

#navigation-mobile a {
	font-weight: bold;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	height: 40px;
	width: 100%;
	padding: 10px 20px;
}

#navigation-mobile-links {
	display: none;
	position: fixed;
/* 	background-color: #8f91bf; */
	background-color: rgba(0, 0, 0, 0.25);
	width: 100%;
	height: 100%;
	top: 40px;
	text-align: center;
}

#navigation-mobile-links a {
	font-weight: bold;
	background-color: #8f91bf;
	color: #ffffff;
	display: block;
	text-align: center;
	text-decoration: none;
	height: 40px;
	padding: 10px 20px;
	border-top: 2px solid #5A7E96;
}

.content {
	margin: 0 5px;
}

.article {
	flex-direction: column;
}

.article-photo {
	order: 2;
	text-align: center;
}

.article-text {
	padding: 10px 20px;
}

img {
	width: 100%;
}

.photolib  img {
	display: inline-block;
	margin: auto;
	width: 100%;
}

	
}