@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.813em;
  line-height: 1.3em;
  
}

#wrapper {
  position: relative;
  max-width: 700px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0rem;
}

a {
   color:#000;
   text-decoration:none;
}
p {
   padding-bottom: 1rem;
   text-align: justify;
}


h1 {
   margin: 0rem 0rem 0.625rem;
   font-size:1.385em;
   text-align: center;
   line-height:1.2em;
}

h1 span {
   font-size:0.7em;
}

h2 {
   font-size:1em;
   line-height:1.2em;
   margin-bottom:1rem;
}
h3 {
   font-size:1em;
   line-height:1.3;
   margin-bottom:0.625rem;
}

ul {
   padding: 0px 0px 16px 0px;
   list-style-image:url(); 
   list-style:none;
}

li {
   padding-left:12px;
}
ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  font-family: Helvetica, Arial, sans-serif;
  float: left;
  top: 0px;
  margin-left: -12px;
}

/* Hebt Float left/right auf */

/* Ende Standard */


/* Header */
header {
  padding: 0rem;
  position: relative;
}
header a{
   position: absolute;
  bottom: 7%;
   right: 2%;
   width: 27%;
   height: 29%;
}
/* Ende Header */
main{
   display: block;
   background: #E7E6E6;
   padding: 1.25rem 1.5rem;
}
/* Article */
article {
  padding: 0rem;
}
article p:nth-of-type(3){
   text-align: center;
}
/* Ende Article */

/* Footer */
footer {
  padding: 0rem;
  text-align: justify;
}
/* Ende Footer */
.clearfix:after {
   content: ".";
   clear: both;
   display: block;
   visibility: hidden;
   height: 0px;
}
a:hover {
   text-decoration:underline;
}
i{
  font-style: normal;
}
img {
   max-width:100%;
   height:auto;
   display: inline-block;
   vertical-align: middle;
}

/* Responsive */
@media only screen and (max-width:700px) {
   #wrapper {
      border:none;
      margin: 0 auto;
   }
   main{
      padding: 1rem;
   }
   footer,
   p {
    text-align: left;
   }
  i br{
    display: none;
  }
}
/* Ende Responsive */