/* CSS Document */
:root {
  --abstand:10em;
  --hintergrund: #ffffff;
  --grau: #606060;
  --blau: #005382;
  --rot: #E31E24;
  --gruen: #009846;
}
html {
  margin: 0em;
  border: 0em;
  padding: 0em;
}
body {
  margin:             0em;
  border:             0em;
  padding:            0em;
  font-family:        Arial, Helvetica, sans-serif;
  text-decoration:    none;
  display:            flex;
  flex-direction:     column;
  flex-wrap:          wrap;
}
header {
  position: fixed;
  margin: 0em;
  border: 0em;
  padding: 0em;
  width: 100%;
  height: 6em;
  background-color: #606060;
  color: #ffffff;
}
  header a:link, header a:visited {
    text-decoration: none;
    color: #ffffff;
  }
  header a:hover {
    color: #000000;
  }
  header .logo {
    position: fixed;
    height: 6em;
    left: 10em;
    top: 2em;
  }
  header .l_text {
    position: fixed;
    margin: 0em;
    border: 0em;
    padding: 0em;
    right: 1em;
    top: 0em;
    font-size: 5em;
    text-decoration: none;
    font-weight: bold;
  }
  header .l_info {
    position: fixed;
    margin: 0em;
    border: 0em;
    padding: 0.5em;
    padding-left: 1em;
    padding-right: 1em;
    right: 0em;
    top: 6em;
    font-size: 1em;
    background: #E31E24;
    text-decoration: none;
    font-weight: bold;
  }

aside {
  margin: 0em;
  border: 0em;
  padding: 0em;
  width: 100%;
}
  aside img {
    width: 100%;
  }
  aside .bild {
    width: 100%;
  }

article {
  margin: 0em;
  border: 0em;
  padding: 0em;
  padding-left: 9em;
  padding-right: 9em;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  flex: 1;
  align-items: stretch;
  align-content: flex-start;
}
  article .imax{
  width:100%
  }
  article a:link, article a:visited {
    text-decoration: none;
    font-weight: bold;
    color: #000000;
  }
  article a:hover {
    color: #E31E24;
  }

section {
  width: 100%;
  background-color: #F0F0F0;
  margin: 1em;
  border: 0em;
  padding: 0em;
  flex-grow: 2;
  flex-shrink: 1;
  flex-basis: 25em;
  border-radius: 0.5em;
}
  section a:link, section a:visited {
    text-decoration: none;
    font-weight: bold;
    color: #000000;
  }

  section a:hover {
    color: #E31E24;
  }
  section .max {
  width:100%;
  }

nav {
  padding: 0em;
  margin: 0em;
  border-top-left-radius: 0.25em;
  border-top-right-radius: 0.25em;
  font-size: 1.5em;
  color: #009846;
  /*  text-transform: uppercase;*/
  font-weight: bold;
  width: 100%;
}
  nav img {
    padding-left: 0.5em;
    height: 0.7em;
    padding-right: 0.5em;
  }
  nav a:link, nav a:visited {
    text-decoration: none;
    color: #009846;
  }

  nav a:hover {
    color: #000000;
  }

footer {
  margin: 0em;
  border: 0em;
  padding: 0em;
  width: 100%;
}
  footer a:link, footer a:visited {
    text-decoration: none;
    color: #000000;
  }

  footer a:hover {
    color: #0f0f0f;
  }

a: link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

@media (max-width: 1025px) {
  header .logo {
    left: 5em;
  }
  article {
    padding-left: 4em;
    padding-right: 4em;
  }
}
@media (max-width: 520px) {
  header .logo {
    left: 0;
  }

  header .l_text {
    right: 0em;
    font-size: 3em;
  }

  article {
  }

  section {
    margin-right: 0em;
    margin-left: 0em;
  }

  nav {
    border-top-left-radius: 0em;
    border-top-right-radius: 0em;
  }
    nav img {
      padding-left: 0em;
      height: 0.5em;
      padding-right: 0em;
    }
}