* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
}


html, body {
	background: #eee;
	height: 100%;
	max-width: 1200px;
	font-family: 'Nunito', sans-serif;
	font-size: 1em;
	color: #333;
}

.navbar {
	position: fixed;	
	width: 200px;
	height: 98%;
	background:#ccdeab;
	color: #333;
	padding: 20px;
}

.navbar h3 {
	color: navy;
	margin-top: 5px;
	margin-bottom: 10px;
	text-align: center;
	text-shadow: 2px;
}
.navbar h5 {
	color: green;
	margin-top: 25px;
	margin-bottom: 10px;
	text-align: center;
	text-shadow: 2px;
}

.navbar .head strong {
	margin-right: 20px;
	margin-bottom: 5px;
	text-align: right;
	text-transform: uppercase;
	font-size: 1.3em;
	color: navy;
}
.navbar .head p {
	padding: 5px;
	margin-bottom: 5px;
	text-align: right;
	text-transform: uppercase;
	font-size: 1.2em;
	color: green;
	text-decoration-line: underline;
}

.container {
	text-align: center;
}

.navbar .owncontent #HL {
	padding: 10px;
	text-align: left;
	font-size: 1.0em;
}
.navbar ul li:hover {
	background: #ccffaa;
}

.navbar ul li a {
	color: black;
	text-align: right;
}


.navbar ul p {
	font-size: 0.7em;
	color: #333;
	text-transform: none;
}

.ref img {
	height: 25px;
	padding: 2px;
	margin-top: auto;
	align-items: center;
}

.book img {
	height: 100px;
	padding: 2px;
	margin-top: auto;
	align-items: center;
}

.picturegrid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	float: right;
	margin-left: 200px;
}

.picturegrid a img {
	height: 150px;
	width: 150px;
	padding: 2px 6px 0 0 ;

}

main {
	margin-left: 250px;
	min-height: 100%;
}

main .maintext h1 {
	width: 100%;
	text-transform: uppercase;
}

main .content {
	width: 95%;
	margin: 10px;
	text-align: left;
}


main h3 {
	text-align: center;
}

main .bilder {
	padding: 2px;
	margin: 2px;
	float: right;
	align-items: center;
}

main .bilder img {
	height: 200px
}


/* FOOTER */
main .footer {
	height: 50px; 
	width: 100%;
	margin-left: 20px;
	bottom: 0px;
	margin-top: 3px;
}

main .footer .footer-content {
	font-size: 0.9em;
	padding-top: 10px;
	bottom: 0px;
}

main hr {
	height: 10px;
	color: #ccdeab;
	background-color: #ccdeab;
}

/* Einfache Gallerie-Ansicht - Seitenvorschau */
main div.gallery {
	  margin: 9px;
	  float: left;
	  width: 225px;
	}

main div.gallery:hover {
		  border: 4px solid #336600;
		}

main div.gallery img {
		  width: 220px;
		  height: 230px;
		}

main div.desc {
		  padding: 15px;
		  text-align: center;
		}
/* Ende einfache Gallerie-Ansicht */

#focus {
	font-size: 1.5em;
	text-align: center;
}

#Mission {
	color: navy;
	font-size: 0.9em;
	justify-content: center;	
}

@media screen and (max-width: 1000px) {

	.picturegrid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		
	}
}

@media screen and (max-width: 767px) {

	.picturegrid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		
	}
}

@media screen and (max-width: 500px) {

	.picturegrid {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		
	}
}




