/* -------------------------------------Importieren,...-------------------------- */
@import url('https://fonts.googleapis.com/css?family=Grenze&display=swap');

/* ------------------Grundeinstellungen für alle Container---------------------- */
body {
	font-family: 'Grenze', serif;
	text-align: center;
	color: brown;
	background-color: #cccccc;
}
/* ------------------------Allgemeine Einstellungen----------------------------- */

/* ---------------- Grundeinstellungen der einzelnen Container ----------------- */
/* --------------------------  ( M O B I L E )  -------------------------------- */
header {
	background: url(img/Backgnd.png);
	background-size: 100%;
	border-radius: 5px;
}
main {
	display: block;
	/* für IE */
	
	background: #ffffff; 
}
article {
	background: #ffede0;
	border-radius: 5px;
	padding: 2em;
}
section {
	border: 2px solid silver;
	border-radius: 5px;
	width: 80%;
	margin: auto;
	padding: 2em;
	margin-top: 0.5em;

}
aside {
}
footer {
	background: #999999;
	border-radius: 5px;
	width: 100%;
	margin-top: 2em;
}
img {
	width: 80%; 
	height: auto;
	border-radius: 5px;
}
/* ------------------- Navigationsmenüs Einstellungen--------------------------- */
nav {
	width: 100%;
	display: none;
}
nav a {
	display: block;
	padding: 0.1em;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
	border: 1px solid #804040;
	border-radius: 3px;
	box-shadow: 0 5px 10px white inset;
	color: gold;
	background-color: #804040;
	transition: all .25s ease-in;
}
nav > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}
nav li {
	margin: 0em;
	padding: 0;
	font-size: 1.5rem;
	flex: 1 1 0%;
}
/* -------------- Navigationsmenüs Sonderfunktionen---------------------- */
nav li > a:after {  /* Pfeil-Symbol hinzufügen */
  content: "\00A0\00A0\00A0\00A0\00A0\203A";
}
nav li > a:only-child:after {  /* Pfeil-Symbol nur bei Unterkategorien*/
  content: "";
}
nav li[aria-current] a {
	background-color: #0080ff;
	color: gold;
}

nav a:focus,
nav a:hover,
nav li[aria-current] a:focus,
nav li[aria-current] a:hover {
	color: #0080ff;
	background-color: gold;
}
/*  Submenu Navigation   */

nav .submenu {
	visibility: hidden;
	height: 0;
	z-index: 1000;
}

nav .submenu li {
	display: block;
}
/**     Show the submenu on hover, focus     **/

nav li:hover .submenu,
nav li:active .submenu,
nav li:focus .submenu {
	visibility: visible;
	height: auto;
}

nav li:focus-within .submenu {
	visibility: visible;
	height: auto;
}
.menue-button {
	display: block;
}
.menue-button {
	background-color: red;
	display: block;
	position: absolute;
	top: 10em;
	padding: 0.5em;
	color: white;
	cursor: pointer;
	text-decoration: none;
	border-radius: 5px;
}	
.menue-button:hover {
	color: #0080ff;
	background: gold;
}
/*  Einblendung der Steuerung  */
#nav-menue:target nav {
	display: block;
}

#nav-menue:target .menue-open {
	display: none ; 
}	
/* ----------------------------  ( E N D E )  ---------------------------------- */
/* ------------------- Navigationsmenüs Einstellungen--------------------------- */

/* ---------------- Grundeinstellungen der definierten Objekte ----------------- */
#logotext {
	width: 85%;
	font-size: 1.5rem;
	left: 7%;
}	
#portrait_img {
	width: 50%;
	margin: auto;
}
#portrait {  /* Schrift*/
	width: 50%;
	font-size: 1em;
	font-weight: bold;
	text-align: left;
	margin: auto;
}
#main_menue {
	background: grey;
	border-radius: 5px;	
}

#ul2 {
	list-style: none;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
#ul2 a {
	display: block;
	padding: 0.2em;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
	text-size: 1.1em;
	border: 1px solid #804040;
	border-radius: 3px;
	box-shadow: 0 5px 10px white inset;
	color: gold;
	background-color: #804040;
	transition: all .25s ease-in;
}
#ul2 li {
	margin: 0.3em;
}
#bereichlogo {
    color: #804040;
    background-color: #0080ff;		
    padding: 0.5em;
	font-weight: bold;
    width: inherit;
}
#totop {
	float: right;
	display: block;
	padding: 0.1em;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
	border: 1px solid #804040;
	border-radius: 3px;
	box-shadow: 0 5px 10px white inset;
	color: gold;
	background-color: #804040;
	transition: all .25s ease-in;
}
/* --------------------------Galerie Einstellungen------------------------------- */
#galerie {
	padding:0;
	margin:0;
	list-style-type:none;
	display: flex;
	flex-wrap: wrap;
}
#galerie li{
	border:2px solid #CCC;
	border-radius: 3px;
	margin: 0.5em;
}
#galerie li:hover{
	border:2px solid #333;
}
#galerie li span{
	display: block;;
	text-align:center;
	margin-bottom: 0.5em;
}
#pic {
		border:none;
		height: 13em;
		margin-top: 1em;
}

/* ***************************************************************************** */

/* ----------------------------  ( E N D E )  ---------------------------------- */
/* ------------------------Allgemeine Einstellungen----------------------------- */


/* ------------------- Anpassung an die Bildschirmgröße ------------------------ */
@media (min-width: 60em) {
	nav {
	display: block;
	}
	nav > ul {
		flex-direction: row;
	}
	nav li {
		flex: 1;
		font-size: 1.1em;
	}
	nav a {
		margin: 0.5em;
	}
	.menue-button {
		display: none;
	}
	body{
		width: 60em;
		margin: auto;
	}
}

/* ----------------------------  ( E N D E )  ---------------------------------- */
/* ------------------- Anpassung an die Bildschirmgröße ------------------------ */

