/* Hd-Stylesheet */


html {
	background-color: white;
	scroll-behavior: smooth;
}

/* Site-Nav */

@media screen and (min-width: 600px) {

	/* P. Mueller, S. 313-314 */
	body {
		max-width: 900px; 
		margin: auto;
	}

	/* Sticky header */
	.site-nav {
		position: sticky;
		top: 0;
	}

	.site-nav .menue ul {
		list-style-type: none;
		margin: 0;
		padding: 0;
		overflow: hidden;
		background-color: #f1f1f1;
	}

	.site-nav .menue li {
		float: left;
	}

	.site-nav .menue li a {
		display: block;
		color: #000;
		text-align: center;
		padding: 14px 16px;
		text-decoration: none;
	}
	  
	.site-nav .menue li a:hover {
		background-color: #555;
		color: white;
	}
   
	/* .site-nav .menue a.active {
		background-color: black;
		color: white;
	}*/	
}


@media screen and not (min-width: 600px) {

	.site-nav .menue ul {
		list-style-type: none;
		padding: 0;
		margin: 0;
		width: 200px;
		background-color: #f1f1f1;
	}

	.site-nav .menue li a {
		display: block;
		color: #000;
		padding: 8px 16px;
		text-decoration: none;
	}

	.site-nav .menue li a:hover {
		background-color: #555;
		color: white;
	}

	/* .site-nav .menue a.active {
		background-color: black;
		color: white;
	} */

}


/* Body */

/* Headlines */

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.75rem; font-variant: small-caps; }

.site-content h3 { font-size: 1.5rem; padding-top: 3rem;}

.site-content {

	font-family: "-apple-system", BlinkMacSystemFont, "Segoe UI", Roboto,
				 "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1rem;
}

/* Footnotes */

.FN {
	color: black;
	font-weight: bold;
}

/* Tables */

th, td {
	padding: 0.5rem 1rem;
	vertical-align : top;
}

.site-content .beitrag .text-footnotes hr {
	width: 20%;
	text-align: left;
	margin-left: 0;
}

/* Blog: Beitragsliste */

.beitragsliste h4 {
	padding-top: 0.5rem;
	border-top: 1px solid #eee;
	margin-bottom: 0.25rem;
}

.beitragsliste article {  margin-bottom: 3rem;}
.beitragsinfo {color: grey; }

/* Download-Bereich */

.ausgabenliste {
	display: grid;
	grid-template-columns: repeat(auto-fit, 250px);
	grid-gap: 1rem;
	padding: 0;
	margin: 0;
}

.ausgabe {
	text-align: center;
	list-style: none;
	padding: 0.5rem;
}

.ausgabe h4 {
	background: lightgrey; color: black;
	font-size: 1.0rem;
	padding: 1rem;
	margin: -0.5rem -0.5rem 1rem -0.5rem;
}

/* Links */

.site-content li { margin-bottom: 0.5rem; }

.site-content a:link { color: #0b74b8; }
.site-content a:visited { color: #36abde; }
.site-content a:hover, .site-content a:focus { color: #F5662E }
.site-content a:active { color: #d90000; }

.site-content button {
	background-color: #0b74b8;
	color: white;
	padding: 0.5rem;
	border: none;
	font-size: inherit;
	cursor: pointer;
	margin-bottom: 1rem;
}

.site-content a[href^="http"]::after {
	content: " \2197";
}

/* footer : navi-meta.css */

.site-footer {
	font-size: smaller;
	background-color: #333;
	color: white;
	text-align: right;
	padding: 1.5rem 1rem;
	margin-top: 2rem; /* Abstand nach oben zum Inhaltsbereich */
}

.site-footer a {
	color: white;
	text-decoration: none;
}

.meta-nav ul { 
	display: flex; 
	padding: 0; 
	margin: 0; 
}
  
.meta-nav li {
	list-style: none;
	margin-right: 0.5rem;
}
  
.meta-nav li:last-child {
	margin-left: auto;
	margin-right: 0;
}


  
