body {
  font: 100% sans-serif;
  background-color: #E6DCCF;
  margin: 0;
}
.container {
  width: 90%;
  max-width: 60em;
  margin: 0 auto; /*Zentrierung */
  background-color: #E6B873;
}
.kopf {
  background-color: #3054BF;
  color: #E6DCCF;
  padding: 0px;
  text-align: center;
}
.fuss {
  background-color: #3054BF;
  color: #E6DCCF;
  padding: 0px;
  text-align: center;
}
.navigation {
  width: 30%;
  float: left;
  background-color: #E6B873;
  color: #3054BF;
}
.inhalt {
  background-color: #fff;
  color: #806640;
  margin-left: 30%;
}
.fuss {
  background-color: #3054BF;
  color: #E6DCCF;
  padding: 0px;
  text-align: center;
}
p {
  margin: 25px 25px 0 25px;
}
h1 {
  margin: 0 25px;
  padding: 25px 0 0;
  font-size: 1.3em;
}
h2 {
  margin: 0 25px;
  padding: 25px 0 0;
  font-size: 1.1em;
}
/*Navigationsleiste */
.navigation ul {
  list-style-type: none; /*Aufzählungspunkte entfernen */
  margin: 25px 0 0 0;
  padding: 0;
}
.navigation a:link, .navigation a:visited {
  text-decoration: none;
  display: block;
  font-weight: bold;
  padding: 2px;
  border-left: 23px solid #E6B873;
  background-color: #E6B873;
  color: #3054BF;
}
/*hover-Effekte */
.navigation a:hover, .navigation a:focus, .navigation a:active {
  background-color: #E6DCCF;
  border-left: 23px solid white;
  color: #806640;
}
img {
  max-width: 100%;
  height: auto;
}
 @media screen and (max-width: 600px) {
      .navigation {
        width: auto;
        float: none;
      }
      .inhalt {
        margin-left: 0;
      }
      .navigation ul {
        margin-top: 0;
      }
      .navigation li {
        display: inline-block;
      }
      .navigation a:link, .navigation a:visited {
        padding: 10px 10px;
        border-left: none;
      }
      .navigation a:hover, .navigation a:focus, .navigation a:active {
        background-color: #fff;
      }
      .navigation h1 {
        display: none;
      }
    }