@font-face {
  font-family: 'Droid Serif';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/droidserif_italic.woff') format('woff'),
	   url('fonts/droidserif_italic.svg') format('svg'),
	   url('fonts/greatvibes_latin.ttf') format('truetype');
}

@font-face 
{
  font-family: 'Great Vibes';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/greatvibes_latin.woff') format('woff'),
	   url('fonts/greatvibes_latin.svg') format('svg'),
	   url('fonts/greatvibes_latin.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
}
 
html, body {
    height: 100%;
	top: 0;
	left: 0;
	font-family: 'Droid Serif', normal;
}

body
{
	background: url(../bilder/hintergrund_1280.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}

.container
{
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}

header
{
	height: 10vh;
	width: 100%;
	margin: 0;
	padding: 0;
	top: 0;
	text-align: center;
}

#logo
{
	margin: 0 auto;
	display: inline-block;
}

#logo h1
{
	color: #000000;
	margin: 0;
	padding: 0;
}

#logo p
{
	color: #333333;
	text-align: right;
	font-size: 120%;
}

#navbar
{
	float: right;
	margin: 20px 0 0 0;
}

#wrapper 
{
	min-height:100%;
	position:relative;
}

#main
{
	margin: auto;
	padding-bottom: 28px;
}

#navigation
{
	-moz-column-count: 2;
    -moz-column-gap: 50px;
    -webkit-column-count: 2;
    -webkit-column-gap: 50px;
    column-count: 2;
    column-gap: 50px;
	list-style: none;
	width: 50%;
	margin-top: 10vh;
	margin-left: auto;
	margin-right: auto;
}

#navigation li
{
	background-color: rgba(150, 150, 150, 0.05);
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 10px;
	margin-left: -40px;
	min-height: 80px;
	min-width: 200px;
	text-align: center;
}

#navigation li a
{
	color: #000000;
	text-decoration: none;
	margin: auto;
	line-height: 80px;
}

#navigation li a:hover
{
	color: #555555;
}

#navigation li:hover
{
	background-color: rgba(150, 150, 150, 0.2);
}

footer
{
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #000000;
	height: 28px;
	width: 100%;
	color: #eeeeee;
}

#footer_menu
{
	text-align: center;
	font-size: 14px;
	margin: auto;
}

#footer_menu ul 
{
  display: inline;
  margin: auto;
  /* padding: 15px 4px 17px 0; */
  list-style: none;
}
#footer_menu ul li 
{
  display: inline-block;
  margin-right: -4px;
  position: relative;
  padding: 5px 40px 5px 0px;
  background: #000000;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

#footer_menu ul li a
{
	text-decoration: none;
	color: #ffffff;
}

#footer_menu ul li a:hover 
{
  background: #000000;
  color: #888888;
}
#footer_menu ul li ul 
{
  padding: 0;
  position: absolute;
  bottom: 26px;
  left: -20px;
  width: 130px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -transition: opacity 0.2s;
}

#footer_menu ul li ul li 
{ 
	background: #000000;
	display: block;
	text-align: left;
}

#footer_menu ul li ul li a
{
	text-decoration: none;
	color: #ffffff;
	margin-left : 30px;
}

#footer_menu ul li ul li a:hover { color: #888888;}

#footer_menu ul li ul li:hover { background: #000000; }
#footer_menu ul li:hover ul
{
  display: block;
  opacity: 1;
  visibility: visible;
}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
{
	.container
	{
		max-width: 95vw;
	}
	
	html,body
	{
		min-width: 1024px;
		min-height: 768px;
	}
	
	#navigation
	{
		width: 95%;
	}
	
	#navigation li
	{
		font-size: 22px;
	}
	
	#logo h1
	{
		margin: 3vh	0 0 0;
		font-size: 160%;
	}

	#logo p
	{
		font-size: 120%;
	}
}

@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px) 
and (orientation: portrait)
{
	html, body
	{
		min-width: 768px;
		min-height: 1024px;
	}
}

@media screen and (max-width: 600px) 
{
	.container
	{
		max-width: 95vw;
	}
	
	#navigation
	{
		width: 95%;
	}
	
	#navigation li
	{
		font-size: 13px;
	}
	
	#logo h1
	{
		font-size: 160%;
	}

	#logo p
	{
		font-size: 120%;
	}
}