/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* farben*/
/* Color Theme Swatches in RGBA */
.northern-lights-jasper-dunkles-blau {
  background: rgba(23, 32, 38, 1);
}
.northern-lights-jasper-tuerkis {
  background: rgba(95, 205, 217, 1);
}
.northern-lights-jasper-gruen {
  background: rgba(2, 115, 115, 1);
}
.northern-lights-jasper-hellgruen {
  background: rgba(4, 191, 173, 1);
}
.northern-lights-jasper-gruengruen {
  background: rgba(4, 191, 157, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
    
    /*folgende 2 zielen auskommentieren wenn durchgehender balken im browser unerwünscht*/
    background-image: url("../images/backgruen.gif");
    background-repeat: repeat-x;
}
img {
  max-width: 100%;
  height: auto;
}

#container {
  max-width: 1200px;
  margin: auto;
  /*! border: 1px solid; */
}
h3 {
  margin-bottom: 15px;
}
header {
  background: rgb(221, 201, 112);
  text-align: center;
}
.logo {
    max-width: 230px;
}
nav {
  background: rgb(138, 220, 231);
}
nav ul {
  list-style-type: none;
}
nav ul li a {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  border-bottom: 1px dotted;
  text-decoration: none;
  color: black;
  transition-property: background-color;
  transition-duration: 1s;
  transition-timing-function: linear;
  transition-delay: 0s;
}
nav ul li a:hover {
  background-color: rgba(4, 191, 157, 1);
  background-color: rgba(169, 252, 117, 1); /*last comes first! "priorisierung"*/
}
main {
  /*! background: rgb(220, 133, 247); */
}
aside {
  /*! background: rgb(209, 171, 113); */
  padding: 10px;
}
article {
  /*! background: rgb(82, 151, 207); */
  padding: 10px;
  text-align: center;
}
section {
  /*! background: rgb(231, 126, 235); */
  padding: 10px;
}
footer {}

a:link {
  text-decoration: none;
  color: black;
}

.pfeil {
  font-size: 15px;
  display: inline-block;
  transform: scale(5, 2);
  margin-left: 20px;
    margin-right: 20px;
  margin-bottom: 20px;
}
.flowroot {
  display: flow-root;
}

article div img {
    width: 300px;
}



@media (min-width: 800px) {
  #container {
      padding-left: 20px;
  padding-right: 20px;
  }
  main {
    display: flex;
    flex-flow: row wrap;
  }
  aside {
    flex: 1 1 40%;
  }
  article {
    flex: 1 1 60%;
  }
  nav {
    
    padding-left: 26.5%;
  }
  nav ul li a {
    width: 20%;
    /*! text-align: left; */
    border-bottom: none;
    float: left;
    padding-left: 10px;
  }
    .pfeil {
        display: none;
    }
}
@media (min-width: 1000px) {
  aside {
    flex: 1 1 30%;
  }
  article {
    flex: 1 1 40%;
  }
  section {
    flex: 1 1 30%;
  }
}