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

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

p {
  padding-bottom: 1rem;
}

h3 {
  background-color: #F2F2F2;
  font-weight: normal;
  font-size: 2em;
  line-height: 1.2em;
  margin: 0 0 1rem;
  padding: 1rem 2rem;
  text-align: left;
}

h1 {
  margin: 0rem 0rem 1rem;
  font-size: 1.3em;
  line-height: 1.1em;
}

h1 span {
  font-size: 0.7em;
}

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

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

ul {
  padding: 0rem 0rem 1rem 0rem;
  list-style-image: url();
  list-style: none;
}

li {
  padding-left: 3rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.200em;
  position: relative;
  float: left;
  top: 0px;
  margin-left: -1rem;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}

/* Ende Standard */

/* Header */
header {
  padding: 0rem 0rem 0rem;
  text-align: right;
}

header a img {
  margin: 1.5rem 3rem;
}

/* Ende Header */

/* Article */
article {
  padding: 0.5rem 3rem 0rem;
}

article p:nth-of-type(5) {
  padding-bottom: 0.5rem;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0rem 3rem 2.5rem;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:749px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
  }

  p {
    text-align: left;
  }
  i br{
    display: none;
  }

}

@media only screen and (max-width:625px) {
  header a img {
    margin: 1.5rem 1rem;
  }
  
  article {
    padding: 0.5rem 1rem 0rem;
  }
  
  footer {
    padding: 0rem 1rem 1rem;
  }

  li {
    padding-left: 2rem;
  }

  h3 {
    padding: 1rem;
    font-size: 1.5rem;
  }
}

/* Ende Responsive */
