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

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

a {
  color: #6A98BD;
  text-decoration: underline;
}

p {
  padding-bottom: 0.7rem;
}

h1 {
  margin: 0.35rem 0 0 0;
  padding: 0 0 0 0;
  font-size: 1.44em;
  line-height: 1.1em;
  text-align: center;
}

h1+p {
  text-align: center;
}

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

h3 {
  font-size: 1em;
  line-height: 1.3;
  margin-bottom: 0;
}

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

li {
  padding-left: 30px;
}

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

/* Hebt Float left/right auf */

/* Ende Standard */

/* Header */
header {
  padding: 0rem 2rem 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Ende Header */

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

article p:last-of-type {
  padding-bottom: 0.25rem;
}

/* Ende Article */

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

/* 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:574px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }

  header {
    padding: 0 1rem 0;
    justify-content: center;
  }

  header img {
    padding: 0 0.5rem 0.5rem;
  }

  i br {
    display: none;
  }

}

/* Ende Responsive */
