@charset "utf-8";

/* Standard */
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #000;
  font-family: Calibri, Arial, sans-serif;
  font-size: 0.875em;
  line-height: 1.3em;
  
}

#wrapper {
  position: relative;
  max-width: 855px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 4rem 2.3rem 2rem;
}

p {
  padding-bottom: 1rem;
  text-align: justify;
}

h1 {
  margin: 0rem 0rem 0rem;
  font-size: 2.7em;
  line-height: 1.1em;
  color: #C00000;
}

h1 + p {
  font-size: 1.2em;
  line-height: 1.3em;
}

h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 1rem;
  color: #C00000;
}

a {
  color: #000;
  text-decoration: none;
}
a u{
  color: #0000FF;
}

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: 1.8rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1.5rem;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}

/* Ende Standard */

/* Header */
header {
  padding: 0rem 0rem 0rem;
  position: absolute;
  top: 11rem;
  right: 3rem;
}

/* Ende Header */

/* Article */
article {
  padding: 0rem 0rem 0rem;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0rem 0rem 0rem;
  font-size: 0.75em;
  line-height: 1.3em;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: flex-end;
}
/* Ende Footer */

/* Responsive */
@media only screen and (max-width:855px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 1rem;
  }

  p {
    text-align: left;
  }
  i br{
    display: none;
  }
  header{
    position: static;
  }
  h1{
    font-size: 2em;
  }
  li{
    padding-left: 1rem;
  }
  ul li:before{
    margin-left: -1rem;
  }
  footer{
    display: block;
  }
}

/* Ende Responsive */
