@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap');

:root {
  font-size: 16px;
}

/* Standard */
* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #000;
  font: 0.875em 'Open Sans', sans-serif;
  line-height: 1.3;
  background: #F9F9F9;
}

#wrapper {
  position: relative;
  max-width: 800px;
  margin: 1rem auto;
  border: solid 2px #74B733;
  background: #fff;
  overflow: hidden;
  padding: 0rem 2rem;
  text-align: left;
}

a {
  color: #000;
  text-decoration: none;
}

p {
  padding-bottom: 1rem;
}

h1 {
  margin: 0rem 0rem 0.25rem 0rem;
  padding: 0rem 0rem 0rem;
  font-size: 1.9em;
  line-height: 1.1em;
  color: #74B733;
  text-align: center;
}

h1 small {
  font-size: 0.7em;
}

h1+p {
  text-align: center;
}

h2 {
  font-size: 1.1em;
  line-height: 1.2em;
  padding: 0rem 0rem 0.2rem 0rem;
  color: #74B733;
}
ul {
  padding: 0rem 0rem 1rem 1rem;
  list-style: none;
}

li {
  padding-left: 1.25rem;
}

/*25A0 - square / 2010 - dash / 2212 - long dash*/
li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.3em;
  line-height: 1.3;
  position: relative;
  float: left;
  top: -3px;
  margin-left: -1.25rem;
  color: #74B733;
}

/* Ende Standard */

/*main*/

/*End main*/

/* Header */
header {
  padding: 0rem 0rem 0rem;
  margin: 0 -2rem;
  border-bottom: 2px solid #74B733;
  position: relative;
}
header a:first-of-type{
  position: absolute;
  top: 6%;
  left: 3%;
  width: 15%;
  height: 52%;
}
header a:last-of-type{
  position: absolute;
  top: 38%;
  left: 19%;
  width: 79%;
  height: 19%;
}
header img {
  display: block;
}

/* Ende Header */

/* Article */
article {
  padding: 1rem 0rem 0rem;
}

aside {
  float: left;
  width: 49%;
}

aside:last-of-type {
  float: right;
}

/* Ende Article */

/* Footer */
footer {
  padding: 1rem 2rem;
  margin: 0 -2rem;
  background: #74B733;
  color: #fff;
  font-weight: 600;
}

footer a {
  color: #fff;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:799px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 0 1rem;
  }

  header {
    margin: 0 -1rem;
  }

  aside, aside:last-of-type {
    float: none;
    width: 100%;
  }

}

/* Ende Responsive */
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}
