
html { background-color: whitesmoke; }

/* border-box aktivieren */
*, *::before, *::after { box-sizing: border-box }

/* Sanftes Scrollen aktivieren */
html {
	scroll-behavior: smooth;
}

body {
	background-color: white;
	min-width: 320px;
	max-width: 1080px;
	margin: 0.25rem auto;
}
body {
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	h1 { font-size: 2.5rem; }
	h2 { font-size: 2rem; }
	h3 { font-size: 1.75rem; }
	h4 { font-size: 1.5rem; }
	h5 { font-size: 1.25; }
	h6 { font-size: 1rem; }
	h1, h2, h3, h4 { font-weight: 600; }
	h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote { margin-top: 0 }
}

/* Unterstreichung der Hyperlinks */
a {
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1875em;
}

/* Gestaltung für den Header */
.site-header {
	color: red;
	background-color: white;
	background-image: url(landschaft_bb_hg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 150px;
	background-position: center;
	text-align: center;
	padding: 0.5rem 0;
	margin-bottom: 0;
}
.site-header-text {
	background-color: rgb(255,255,255,0.6);
	
}



/* Grundlegende Gestaltung für die Navigation */
.site-nav {
	background-color: #c9e3c6;
	color: black;
	padding: 0.5rem 1rem;
	margin-bottom: 2rem;
	position: sticky;
	top: 0;
	box-shadow: 0 2px 6px rgb(51,51,51,0.3);
}

.site-nav ul {
	padding: 0;
	margin: 0;
}

.site-nav li {
	display: inline;
	margin-right: 0.5rem;
}

.site-nav a {
	color: black;
	text-decoration: none;
}

.current a {
	text-decoration: underline;
}

/* Gestaltung Inhaltsbereicht */
.site-content { 
	line-height: 1.5; /* erhöht den Zeilenabstand */
	padding: 0 1rem;
} 

.content-intro h1 {
	margin: 1rem 0;
	align: center;
}

.content-intro h2 {
	margin: 1rem 0;
}

.content-intro h3 {
	margin: 1rem 0 0.5rem 0;
}

.content-allgemein h3 {
	margin: 1rem 0 0.5rem 0;
}

.content-allgemein ul {
	margin: 0.5rem 0;
}

/* Gestaltung für den Abschnitt und die Infoboxen */
.infoboxen {
	background-color: whitesmoke;
	padding: 1rem;
	margin-bottom: 1rem;
}

.infobox {
	text-align: center;
	background-color: white;
	padding: 1rem;
	margin: 1rem;
}

/* Gestaltung für den Footer */
.site-footer {
	font-size: smaller;
	background-color: #c9e3c6;
	color: black;
	text-align: right;
	padding: 0.5rem 1rem;
}

.footer-nav ul {
	margin: 0;                   /*Entfernung eines eventuellen Außenabstandes von ul */
}

.footer-nav li {
	display: inline;
	margin-right: 0.5rem;
}

.site-footer a {
	color: black;
	text-decoration: none;
}