@charset "utf-8";

:root {
  font-size: 16px;
}

/* Standard */
* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #000;
  font: 1em Arial, Helvetica, Calibri, sans-serif;
  line-height: 1.3;
}

#wrapper {
  position: relative;
  max-width: 550px;
  margin: 1rem auto;
  border: solid 2px #000;
  background: #fff;
  overflow: hidden;
  padding: 1.5rem 1.5rem 0rem;
  text-align: left;
}

a {
  color: #000;
  text-decoration: none;
}

p {
  padding-bottom: 1.25rem;
}

h1 {
  margin: 0rem 0rem 1.25rem 0rem;
  padding: 0rem 1rem 0rem;
  font-size: 1.5em;
  line-height: 1.2em;
  text-align: center;
}

h1 small {
  font-size: 0.7em;
}

h2 {
  font-size: 1.6em;
  line-height: 1.2em;
  padding: 0rem 0rem 1.25rem 0rem;
  color: #2278BB;
  font-style: italic;
  text-align: right;
}

ul {
  padding: 0rem 0rem 0.5rem 0rem;
  list-style: none;
}

li {
  padding-left: 1rem;
}

/* >: 003e / 25A0 - square / 2010 - dash (Dau -) / 2212 - long dash  (Dau -) / 25B6 - triangle*/
li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.3em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1rem;
}

/* Ende Standard */

/*main*/

/*End main*/

/* Header */
header {
  padding: 0rem 0rem 0rem;
}
header img{
  position: absolute;
  left: 1.5rem;
  top: 0.75rem;
}
/* Ende Header */

/* Article */
article {
  padding: 0rem 0rem 0rem;
}

article p:first-of-type {
  margin-left: 7rem;
}

article p:last-of-type {
  text-align: justify;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0rem 0rem 0rem;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:549px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
  }
  a span{
    display: none;
  }
  header img{
    position: static;
  }
  article p:last-of-type {
    text-align: left;
  }

  article p:first-of-type {
    margin-left: 0rem;
  }
  h1{
    padding: 0;
  }
  h2{
    font-size: 1.3em;
  }

}

/* 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;
}
