@font-face {
  font-family: GrueneType;
  font-style: normal;
  font-weight: 600;
  font-display: fallback;
  src: local("GrueneType"),local("GrueneType"),url(../fonts/GrueneType-BlackCondensedItalic.woff) format("woff"),url(../fonts/GrueneType-BlackCondensedItalic.woff2) format("woff2")
}

@font-face {
  font-family: 'PT Sans';
  src: local('PT Sans'), local('PTSans-Regular'), url('../fonts/ptsans-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PT Sans';
  src: local('PT Sans Bold'), local('PTSans-Bold'), url('../fonts/ptsans-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

:root {
	--gruen: 0, 137, 57;  /* Klee */
	--dunkelgruen: 0, 85, 56;  /*tanne*/
	--hellgruen: 138, 189, 36; /* Grashalm */
	--magenta: 251, 27, 125;  /*himbeere*/
	--gelb: 255, 241, 122;  /*sonnenblume*/
	--dunkelgelb: 255, 213, 0;
	--dunkelblau: 91, 125, 169;
	--hellblau: 11, 161, 221; /* himmel */
	--sand: 245, 241, 233;
	--text-dunkel: 17, 24, 39;
	--text-hell: 255, 255, 255;
	--white: 255, 255, 255;
	
	--textfont: 'PT Sans', sans-serif;
	--textfont-bold: 'PT Sans', sans-serif;
	--headfont: 'GrueneType', serif;
	
	
	--sitemargin: 1rem;

	--cardshadow: 0px 0px 20px 0px rgba(0,0,0,.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--textfont);
}

html {
  font-size: 16px !important;
}

html, body {
  width: 100%;
  min-height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	padding: calc(2 * var(--sitemargin)) var(--sitemargin) var(--sitemargin) var(--sitemargin);
	text-align: center;
	background: rgb(var(--dunkelgruen));
	box-shadow: inset 0 0 200px rgba(0,0,0,0.5);
	justify-content: space-between;
	min-height: 100vh;
}

main {
	flex-grow: 1;
}

h1, h2, h3, h4, h5, h6,
h1 p,
h1 p strong {
	font-family: var(--headfont);
	font-weight: normal;
	line-height: 1.05em;
	color: rgb(var(--dunkelgruen));
	margin: 0 0 1rem 0;
	text-wrap: balance
}

h1 p,
h1 p strong {
	font-size: 2.5rem;
	color: rgb(var(--white));
	margin: 0;
	padding: 0;
}

h2 {
	font-size: 1.2rem;
	letter-spacing: 0.01em;
}

br {
  font-size: 100%;
}

a {
	color: rgb(var(--hellgruen));
	text-decoration: none;
	transition: all 0.3s;
}

a:hover {
	color: rgb(var(--dunkelblau));
}


b,
strong {
	font-family: var(--textfont-bold);
	font-weight: 700;
}

.dunkel {
	color: rgb(var(--dunkelgruen));
}

.text-dunkel {
	color: rgb(var(--text-dunkel));
}

.text-hell {
	color: rgb(var(--text-hell));
}

.big {
	font-size: 1.2rem;
}

.small {
	font-size: 0.8rem;
}

.mt1 {
	margin-top: 1rem !important;
}

.mb1 {
	margin-bottom: 1rem !important;
}

.mt4 {
	margin-top: 4rem !important;
}

.mb4 {
	margin-bottom: 4rem !important;
}

.centered {
	margin-inline: auto;
}

.hyphens {
	hyphens: auto;
}

.balanced {
	text-wrap: balance;
}

.center {
	text-align: center;
}

.nositemargin {
	margin: 0 calc(0rem - var(--sitemargin));
}

.innersitemargin {
	padding: var(--sitemargin);
}

.stoerer {
	display: flex;
	background-color: rgb(var(--hellblau));
	width: 142px;
	height: 142px;
	border-radius: 100%;
	transform: rotate(-9deg) scale(0.8);
	font-size: 2rem;
	font-family: var(--headfont);
	text-transform: uppercase;
	text-align: center;
	/* padding-top: 1rem; */
	margin: auto;
	line-height: 1.1em;
	align-content: center;
	justify-content: center;
	flex-wrap: wrap;
	display: none;
}

header {

}

span.spacer {
  display: block;
  height: 6rem;
}



header img {
	width: 30vw;
	border-radius: 60vw;
}

img#logo {
  width: 10vw;
	margin-bottom: 1rem;
 }

#teaser {
	color: rgb(var(--white))
}
footer p {
	opacity: 0.5;
}

h1 p {
	color: rgb(var(--hellgruen));
}

h1 p strong {
	color: rgb(var(--white));
}

#links {
	margin: 4rem auto;
}

#links ol {
	padding: 0;
	margin: 0;
	list-style: none;
}

#links ol li a {
	display: block;
	background: rgb(var(--hellgruen));
	padding: 1rem 1.5rem;
	font-size: 1rem;
	margin-bottom: 1rem;
	border-radius: 10rem;
	text-align: center;
	box-shadow: var(--cardshadow);
	color: rgb(var(--dunkelgruen));
}

#socials {
	display: flex;
	align-content: center;
	justify-content: center;
	gap: 15px;
	margin-top: 1.5rem;
}

#socials a {
	display: block;
	height: 25px;
}

#socials a svg {
	height: 100%;
	fill: #fff;
	opacity: 0.5;
}


@media only screen and (min-width: 770px) {

	:root {
		--sitemargin: 4rem;
		--swiper-navigation-sides-offset: 10px;
	}
	
	body {
	padding: var(--sitemargin);
	}

	button {
		cursor: pointer;
	}
	
		
	header {
	}

	header img {
		width: 20vw;
		border-radius: 60vw;
		margin-bottom: 1rem;
	}
	
	img#logo {
		width: 5vw;
		}

	.big {
	font-size: 1.4rem;
	}	
	
	#links ol li a {
		max-width: 800px;
		margin-inline: auto;
		transition: all 0.3s;
	}

	#links ol li a:hover {
		background: rgb(var(--white));
		transform: scale(102%);
		box-shadow: var(--cardshadow), var(--cardshadow);
	}

	#socials a svg {
		transition: all 0.3s;
	}
	
	#socials a:hover svg {
		opacity: 1;
		transform: scale(120%);
	}	
	
}





