html, body {
margin: 0;
padding: 0;
height: 100%;
text-align: center;
background-image: url("./../images/Hintergrund_Mollsee.jpg");
background-size: cover;
}

#main {
top:0px;
left:50%;
min-height: 100%;
height:auto !important;
height:101%;
width:900px;
margin-top:0px;
margin-left:-450px;
position: relative;
border-left:1px solid white;
border-right:1px solid white;
}

#content {
top:150px;
text-align: center;
height: 750px;
min-height: 700px;
background-color:white;
}

#title {
height:90px;
text-align: center;
}

#club {
height:75px;
width:75px;
text-align: center;
background-color: snowwhite;
}

#menu {
width:100%
height:15px;
background-color:#0000de;
}

#header {
width:100%;
height:120px;
top:0px;
position: fixed;
background-image: url("./../images/raute_bayern.png");
margin-top:0px;
padding-top:0px;
}

#footer {
width:100%;
height:60px;
background-color:#0000ef;
position: fixed;
bottom: 0;
color: white;
font-size: 16px;
}

footer a:link, a:visited, a:focus, a:hover, a:active {
color: white; text-decoration:none;
}

nav {
  float: left;
  width: 100%;
  background: #0000ef; <!-- Farbe Menu -->
  font-size: 16px;
}

nav ul {
  margin: 0;
  padding: 0;
}

nav a {
  display: block;
  color: #fff; <!-- Farbe Schrift -->
  text-decoration: none;
}

nav ul li {
  position: relative;
  float: left;
  list-style: none;
  color: #f00;
  transition: 0.5s;
}

nav ul li a {
  padding: 20px;
}

nav ul > li.submenu > a:after {
  position: relative;
  float: right;
  content: '';
  margin-left: 10px;
  margin-top: 5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  border-bottom: 5px solid transparent;
}

nav ul ul li.submenu > a:after {
  margin-left: auto;
  margin-right: -10px;
  border-left: 5px solid #d00;
  border-right: 5px solid transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

nav ul li:hover {
  background: #0000ef; <!-- Farbe Mouseover -->
}

nav ul ul {
  position: absolute;
  top: -9999px;
  left: -9999px;
  background: #00f; <!-- Farbe Submenu -->
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

nav ul ul li {
  float: none;
  width: 150px;
  border-bottom: 1px solid #555;
}

nav ul ul li a {
  padding: 5px 10px;
}

nav ul ul li:last-child {
  border-bottom: none;
}

nav ul li:hover > ul {
  top: 100%;
  left: 0;
}

nav ul ul li:hover > ul {
  top: 0;
  left: 200px;
}