@charset "utf-8";

/* Standard */
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #000;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.875em;
  line-height: 1.3em;
}

#wrapper {
  position: relative;
  max-width: 649px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background: #fff;
  overflow: hidden;
  padding: 2rem;
}

p {
  padding-bottom: 1rem;
  text-align: justify;
}

h1 {
  margin: 0 0 2.5rem;
  font-size: 1.1em;
  line-height: 1.1em;
  text-align: center;
}
 

h1 span {
  font-weight: normal;
}

h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 1rem;
}

a {
  color: #000;
  text-decoration: none;
}

a ins {
  color: #0000FF;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

ul {
  padding: 0 0 1rem;
  list-style: none;
  text-align: justify;
}

ul li ul {
  padding: 0;
  
}

ul li ul li {
    padding-left: 2.7rem;
}

li {
  padding-left: 2.75rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.3em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1.3rem;
}

li ul li:before {
  content: "o";
  line-height: 1.6;
  font-size: 0.9em;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}

/* Ende Standard */

/* Header */
header {
  padding: 0 0 1rem;
  text-align: center;
}

/* Ende Header */

/* Article */
article {
  padding: 0 0 0;
}
section{
  display: flow-root;
   margin-bottom: 1.5rem;
}


article aside img {
  float: left;
  margin-right: 3.5rem;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0 0 0;
  text-align: justify;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:647px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 1rem;
  }

  p,
  footer,
  ul {
    text-align: left;
  }

  li {
    padding-left: 1rem !important;
  }

  li:before {
    margin-left: -1rem !important;
  }

  h1 br {
    display: none;
  }

  article aside img {
    margin-right: 1rem;
    margin-bottom: 1rem;
  }

}

/* Ende Responsive */
