body {
  background-color: #FFFFFF;
  font-family:Futura, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

div.logo {
	text-align: center;	
	border-style: none;
	border-width: 1px;
	border-color: #000000;
	margin-top:0px;	
}	
		
div.inhalt {
	padding-left: 7%;
	padding-right: 7%;
  	font-size: 1,1em;
	text-align: center;	
	border-style: none;
	border-width: 1px;
	border-color: #000000;
	margin-top:20px;	
}	

div.bild {
	text-align: center;	
	margin-top: 15px;
	z-index: 2;
}

img.bild {
	border-style: none;
	border-width: 1px;
	border-color: #FFFAEF;
	background-color: none;
	margin-top: 35px;	
	text-align: center;	
}	

div.bildinsta {
	padding-left: 7%;
	padding-right: 7%;
	text-align: center;	
	border-style: none;
	border-width: 1px;
	border-color: #000000;
	margin-top:0px;
	
}

img.bildinsta {
	border-style: none;
	border-width: 1px;
	border-color: #FFFAEF;
	background-color: none;
	text-align: center;	
 	padding-left: 5px;
	padding-right: 5px;
}	

div.copy {
	text-align: center;	
	font-size: 10px; 
	border-style: none;
	border-width: 1px;
	border-color: #000000;
	margin-top:30px;	
}	


h1 { font-family: Rammetto One; font-size:30px; font-weight:bold; margin: 0px 0 -6px 0;}
h2 { font-size:16px; font-weight:bold; margin: 0px 0 -6px 0;} 
h3 { font-size:14px; font-weight:bold; margin: 0px 0 -6px 0;}

a.link:link { text-decoration:underline; color:#000000; font-size: 1,1em; }
a.link:visited { text-decoration:underline; color:#000000;font-size: 1,1em; }
a.link:hover { text-decoration:underline; color:#C0C0C0; }
a.link:active { text-decoration:underline; color:#C0C0C0; }
a.link:focus { outline: none;}



a.menue {
  text-decoration: none;
  color: #1E1E23;
  opacity:1;
  font-size: 1.5em;
  font-weight: 400;
  transition: 200ms;
}
a.menue:hover {
  opacity:0.5;
}
ul {
  padding: 0;
  list-style-type: none;
}



nav {
  background-color: #FFFFFF;
  height: 65px;
}


#menuToggle {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 25px;
  left: 25px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: flex;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

#menuToggle span
{
  display: flex;
  width: 29px;
  height: 2px;
  margin-bottom: 5px;
  position: relative;
  background: #000000;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 5px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-3px, -1px);
  background: #36383F;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
  width: 180px;
  height: 400px;
  box-shadow: 0 0 10px #85888C;
  margin: -50px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  background-color: #F5F6FA;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  transition-delay: 2s;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}