:root {
  --primary-color: #24a28e;
  --secondary-color: orange;
  --background-color:rgb(240, 240, 240);
}

@font-face {
  font-family: "Nunito", sans-serif;
  src: url(https://fonts.google.com/css?family=Nunito);
}

body {
  padding: 0em;
  margin: 0em;
  background-color: tan;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

body header {
  background-color: blue;
  margin-bottom: 2em;
  width: 25%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body header img {
  width: 100%;
  height: auto;
}

body nav {
  background-color: brown;
  width: 90%;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body nav ul {
  background-color: yellow;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body nav ul li {
  background-color: violet;
  width: 5cm;
}

body nav ul li a {
  text-decoration: none;
}

body main {
  background-color: blueviolet;
  width: 75%;
  margin-bottom: 4em;
  padding: 1em;
}

body main img {
  width: 100%;
  height: auto;
}

body main .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
  font-size: 1em;
  margin-bottom: 2em;
}

body main .block .ueberschrift {
  font-size: 1.3em;
}

body main .block img {
  width: 60%;
  height: auto;
}

body footer {
  background-color: aqua;
  width: 100%;
  margin-top: 0.5em;
  position: fixed;
  bottom: 0;
}

body footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body footer ul li a {
  text-decoration: none;
}

body .nav_left {
  background-color: beige;
  margin: 0em;
  padding: 0em;
  padding-top: 5em;
  left: 0em;
  position: fixed;
  width: 10vw;
  height: 100vh;
}

body .nav_left img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: chartreuse;
  width: 100%;
  min-width: 2cm;
  height: auto;
}

body .nav_left ul {
  background-color: aqua;
  list-style: none;
  padding: 0 0em 0 0.5em;
}

body .nav_left ul li {
  background-color: burlywood;
  font-size: 1.5em;
  padding: 0 0.2em 1em 0.2em;
}

body .nav_left ul li a {
  text-decoration: none;
}
/*# sourceMappingURL=main.css.map */