* {
	margin: 0;
	padding: 0;
}

body {
	background: rgb(255, 255, 255);
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.87718837535014) 0%, rgba(255, 255, 255, 1) 20%);

}

html {
	color: darkslategrey;
	font-family: "Montserrat", sans-serif;
	font-size: 1em;
}

:root {
	--nav-color: #2399e8;
	--text-color: #fff;
	--accent-color: #1C7DBE;
}

a {
	text-decoration: none;
	color: LightSlateGray;
}

a:hover {
	color: SlateGray;
}

h1 {
	color: SeaGreen;
	font-size: 1.5em;
	letter-spacing: 0.1ex;
}

.center {
    text-align:center;
}

.wrapper {
	min-height: 100dvh;
	position: relative;
	padding-bottom: 1px;
	margin-top: -1px;
}

.parent {
	position: sticky;
	box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
	border-bottom: 1px solid Gainsboro;
	border-right: 1px solid Gainsboro;
	border-left: 1px solid Gainsboro;
	margin: 0 auto 150px auto;
	max-width: 1100px;
	display: grid;
	grid-template-columns: repeat(1, minmax(250px, 1fr));
	gap: 10px;
	background-color: #fff;
}

.header,
.footer {
	margin: 0 auto;
	text-align: center;
}

.header {
	padding: 20px 0 15px 0;
}
.header img {
    width:65%;
    height:auto;
}
.footer {
	font-size: 0.9em;
	padding-bottom: 10px;
}

.article {
	padding: 20px;
}

.article p {
	padding: 0 0 0.5em 0;
}

.article h1 {
	padding-bottom: 0.5em;
}

.article h2 {
	padding-bottom: 0.3em;
	font-size:1.2em;
}

.article h3,
.article h4 {
	padding-bottom: 0.2em;
	font-size:1em;
}

.article ul {
	padding: inherit;
}

form {
	width: 90%;
}

td {
	width: 50%;
}

input,
textarea {
	border: 1px solid Gainsboro;
	background-color: #fff;
	padding: 0.5em;
	width: 100%;
}

input:hover,
textarea:hover {
	background-color: #f4f4f4;
}

input[type="checkbox"],
input[type="submit"] {
	width: auto;
}

.galerie {
	width: 90%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(5, 1fr);
	gap: 8px;
	justify-content: center;
	text-align: center;
	margin: 0 auto;
}

.galerie img {
	max-width: 100%;
	border: 2px solid lightgrey;
	padding: 3px;
	margin-bottom: 0 !important;
}

.galerie p {
	margin-top: 5px;
	font-style: italic;
}

.nav {
	height: 60px;
	background-color: var(--nav-color);
	display: flex;
	justify-content: flex-end;
	align-items: center;
	box-shadow: 0 4px 5px -2px rgba(0, 0, 0, 0.2);
}

.links-container {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.nav a {
	height: 100%;
	padding: 0 20px;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--text-color);
	font-weight: bold;
}

.nav a:hover {
	background-color: var(--accent-color);
}

.nav .home-link {
	margin-right: auto;
}

.nav svg {
	fill: var(--text-color);
}

#sidebar-active {
	display: none;
}

.open-sidebar-button,
.close-sidebar-button {
	display: none;
}

.custom-shape-divider-bottom-1736682796 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	transform: rotate(180deg);
}

.custom-shape-divider-bottom-1736682796 svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 150px;
}

.custom-shape-divider-bottom-1736682796 .shape-fill {
	fill: var(--nav-color);
}

@media (max-width: 732px) {
	.headerwrapper {
		position: sticky;
		top: 0;
		background-color:#fff;
	}

	.header-margin {
		padding-top: 2px;
	}

	.header img {
		width: 75%;
	}

	.galerie {
		grid-template-columns: repeat(1, 1fr);

	}

	.links-container {
		flex-direction: column;
		align-items: flex-start;
		position: fixed;
		top: 0;
		right: -100%;
		z-index: 10;
		width: 200px;
		background-color: var(--accent-color);
		transition: 0.5s ease-out;
	}
.nav {
    height: 50px;
}
	nav a {
		box-sizing: border-box;
		height: auto;
		width: 100%;
		padding: 20px 30px;
		justify-content: flex-start;
	}

	.open-sidebar-button,
	.close-sidebar-button {
		padding: 20px;
		display: block;
	}

	#sidebar-active:checked~.links-container {
		right: 0;
	}

	#sidebar-active:checked~#overlay {
		height: 100%;
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9;
	}

	.custom-shape-divider-bottom-1736682796 svg {
		width: calc(100% + 1.3px);
		height: 120px;
	}
}