/*
* Grundlayout CSS-Datei
* Beeinflusst den Header, die Navigation, den Footer und den Body
* Wird von jeder HTML-Datei aufgerufen
*/

@font-face {
  font-family: "Source Sans Pro";
  src: url('../Source_Sans_Pro/SourceSansPro-Light.ttf') format('truetype');
}

body {
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
	min-width: 1100px;
}

/*
* Navigations Bar
*/
nav {
  height: 70px;
  min-width: 700px;
  padding-top: 20px;
}

.divNav {
  height: 60px;
  background-color: white;
  margin-bottom: 10px;
  border-bottom: solid white;
}

#imgBits {
  margin-left: 20px;
  margin-right: 16px;
  float: left;
  width: auto;
  height: 52px;
}

.ulNav {
  float: left;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: white;
}

#li_1, #li_2, #li_3, #li_4 {
  float: left;
}

#a_1, #a_2, #a_3, #a_4 {
  font-size: 20px;
  display: block;
  color: rgb(135,135,135);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

#a_1:hover, #a_2:hover, #a_3:hover, #a_4:hover{
  border-bottom: solid rgb(19, 49, 153);
}

/*
* Header
*/
header {
  display: flex;
  align-items: center;
  height: 400px;
  width: auto;
  min-width: 700px;
  box-shadow: 0px 7px 9px  rgba(100,100,100,.8);
}

.divHeader{
  position: relative;
  display: inline-block;
  height: 100%;
  width: 100%;
  background-image: url(../Bilder/ostsee.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#pHeader{
  position: absolute;
  left: 110px;
  top: 50px;
  color: rgb(19, 49, 153);
  font-size: 60px;
  font-weight: bold;
}

/*
* Footer
*/
footer {
  position: fixed;
  bottom: 0px;
  height: 60px;
  width: 100%;
  min-width: 700px;
  background-color: rgb(19, 49, 153);
}


.ulFooter {
  height: 20px;
  width: 400px;
  float: left;
  list-style-type: none;
  margin: 0;
  margin-top: 20px;
  margin-left: 41%;
  padding: 0;
  overflow: hidden;
}

#liImpressum, #liHaftungsausschluss, #liLinks {
  float: left;
}

#aImpressum, #aHaftungsausschluss, #aLinks {
  font-size: 15px;
  padding-left: 10px;
  padding-right: 10px;
  display: block;
  color: white;
  text-align: center;
  text-decoration: none;
}

#aHaftungsausschluss {
  border-left: solid white 2px;
  border-right: solid white 2px;;
}
