/*SCHRIFTART UND FARBE*/
:root {
	--farbe: Black;
}
body {
	color: var(--farbe);
	font-size: 1rem;
 	font-family: "Helvetica";
	margin: 0px;
	
}

a {
	color: var(--farbe);
}
a:hover	{
	color: SkyBlue;
}


/*TITELZEILE*/
h1 {
	position: fixed;
	top: 0;
	font-size: 500%;
	margin: 0px;
	background-color: white;
	width: 5000px;
	
}
#koch {
  	text-decoration: none;
}

/*ALLE SEITEN*/
.seite {
	min-height: 100vh;
	height: auto;
}

/*Seite 0*/
nav {
	background-color: White;
	padding: 1rem;
	width: 16em;
	position: absolute;
	top: 60%;
  	left: 20%;
	
}
#p0 {
	background: url("/bilder/boot.jpg";
}

