@font-face {
    font-family: 'CaveatBrush';
    src: url('../res/fonts/Caveat_Brush/CaveatBrush-Regular.ttf') format('truetype');
}


@font-face {
    font-family: 'ShortStack';
    src: url('../res/fonts/Short_Stack/ShortStack-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'PermanentMarker';
    src: url('../res/fonts/Permanent_Marker/PermanentMarker-Regular.ttf') format('truetype');
}


* {
   	padding: 0;
    	margin: 0;
}

html {
    	overflow-y: scroll;
    	font-size: 12pt;
	font-family: sans-serif;
}

body {
	width: 100%;
	height: 100%;
/*	background-color: rgb(0, 100, 0);*/
	background: #f3f6f0;
	color: rgb(255, 185, 15);
	font-size: 100%;
}

#seite {
	max-width: 1200px;
	margin: 30px auto;
	width: 86%;
	height: 100%;
	text-align: center;
/*	margin: 0px auto;*/
	background: #ffffffcc;
	padding: 20px 30px;
	border-radius: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

header {
	font-family: 'CaveatBrush', sans-serif;
	font-size: 130%;
	display: flex;
	align-items: center;
	gap: 20px;
}

header img {
	width: 90px;
	height: 90px;
	/*border-radius: 50%;*/
	/*object-fit: cover;*/
}

header h1 {
	margin: 0;
	color: #3d5a2d;
	font-weight: bold;
}

nav {
	margin-top: 20px;
	background-color: #dce8cfd6;
	padding: 6px 0px;
	border-radius: 10px;
	font-family: 'ShortStack', sans-serif;
}

nav ul {
	list-style: none;
	margin: 0px auto;
	padding: 0px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

nav ul li {
	padding: 10px 15px;
	background: #dce8cf;
	border-radius: 10px;
	color: #2f4a23;
	cursor: pointer;
	transition: 0.2s;
}

nav ul li:hover {
	background: #c7dbb8;
}

.content {
	margin-top: 30px;
	color: #2f2f2f;
	line-height: 1.6;
}

.content h2 {
	font-family: 'PermanentMarker', sans-serif;
}

footer {
	margin-top: 40px;
	text-align: center;
	font-size: 0.8em;
	color: #6a6a6a;
}

@media (max-width: 600px) {
	header {
		display: initial;
       		font-size: 100%;
	}

	header img {
		width: 80px;
		height: 80px;
	}


	nav ul {
		flex-direction: column;
		gap: 10px;
	}
	nav ul li {
		text-align: center;
		margin: 0px;
	}
}
