@charset "utf-8";
/* CSS Document */

/* Colors */
:root {
	--main-background-color: #005f00;
	--menu-selected-color: #009000;
	--menu-background-hover-color: #ddd;
	--menu-text-color: #fff;
	--menu-text-hover-color: #000;
	--menu-text-selected-color: #fff;
	--footer-text-color: #fff;
}

body {
	margin: 0;
	font-family: "Verdana", "Helvetica", "Arial", sans-serif; 
	font-size: 14px;
}

h2, h3 {
	padding-top: 1.5em;
}

/* Start: Header */
.header {
}

.headerlogo {
	height: 5em;
/*	text-align: center; */
	padding: .85em;	
}
/* End: Header */

/* Start: Menu */
.topnav {
	overflow: hidden;
	background-color: var(--main-background-color);
}

@media screen and (min-width: 600px) {
	.topnav {
		padding-left: 1.3em;
	}
}

.topnav a {
	float: left;
	display: block;
	color: var(--menu-text-color);
	text-align: center;
	padding: 1em 1.2em 1em 1.2em;
	text-decoration: none;
	font-size: 1.2em;
}

.topnav a:hover {
	background-color: var(--menu-background-hover-color);
	color: var(--menu-text-hover-color);
}

.topnav a.active {
	background-color: var(--menu-selected-color);
	color: var(--menu-text-selected-color);
}

.topnav .icon {
	display: none;
}

@media screen and (max-width: 600px) {
	.topnav a:not(:first-child) {display: none;}
	.topnav a.icon {
		float: right;
		display: block;
	}
}

@media screen and (max-width: 600px) {
	.topnav.responsive {position: relative;}
	.topnav.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
  	}

	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
}
/* End: Menu */

/* Start: Content */
	.contentcontainer {
		display: flex;
		justify-content: center;
	}

	@media screen and (max-width: 600px) {
		.contentchild {
			width: 100%;
			padding-right: .8em;
			margin: 0 .5em 0 .5em;
		}
	}
	
	@media screen and (min-width: 601px) {
		.contentchild {
/*			width: 90vw; */
			width: 100%;
			padding-right: .8em;
			margin: 0 2.5em 0 2.5em;
		}
	}
	.contentchild {
		padding: 2em 0 2em 0;
	}
/* End: Content*/

/* Start: Open Streetmap */
	@media screen and (max-width: 600px) {
		#map {
			width: 100%;
			height: 400px;
		}
	}
	
	@media screen and (min-width: 601px) {
		#map {
			width: 100%;
			height: 600px;
		}
	}
/* End: Open Streetmap */

/* Start: Footer */
	.footer {
		display: flex;
		justify-content: center;
		padding: 1em 0 1em 0;
		background-color: var(--main-background-color);
		text-align: center;
		color: var(--footer-text-color);
		font-size: .85em;
		line-height: 1.7em;
		margin-top: 2.5em;
	}
	
	@media screen and (max-width: 600px) {
		.footerchild {
			width: 95vw;
			padding: 1em .8em 1em .8em;
			padding-left: .8em;
			padding-right: .8em;
		}
	}
	
	@media screen and (min-width: 601px) {
		.footerchild {
			width: 95vw;
			padding: 1em 0 1em 0;
		}

	}
/* End: Footer */