@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.875em;
  line-height: 1.286em;

}

#wrapper {
  position: relative;
  max-width: 602px;
  min-width: 250px;
  margin: 1rem auto;
  background-color: #fff;
  overflow: hidden;
}

p {
  margin-bottom: 0.375rem;
}

h1,
h3 {
  margin: 0.375rem 0;
  font-size: 2em;
  line-height: 1.125em;
  color: #528FCA;
}

h1 span {
  font-size: 0.7em;
}

small {
  vertical-align: text-bottom;
}

h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0;
  color: #528FCA;
}

a {
  color: #528FCA;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

li {
  padding-left: 1.12rem;
}

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

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

/* Ende Standard */

/* Header */
header {
  padding: 0 0 0.375rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  font-size: 1.25em;
  color: #528FCA;
}

header a {
  color: #528FCA;
}

header p {
  margin-bottom: 0.125rem;
}


/* Ende Header */

/* Article */
article {
  padding: 1rem 1.25rem 0.375rem;
  border: solid 3px #528FCA;
  border-bottom: 0px solid #000;
}

aside {
  text-align: center;
}

aside p {
  text-align: center;
}

article>p:nth-of-type(1) {
  text-align: justify;
}

section {
  text-align-last: justify;
}

/* Ende Article */

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

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:599px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 0;
    font-size: 0.9375em;
  }

  article {
    padding: 0.75rem;
    border: solid 0px #528FCA;
    border-bottom: 0px solid #000;
  }

  article>p:nth-of-type(1) {
    text-align: left;
  }

  section {
    text-align-last: left;
  }

  i br {
    display: none;
  }

  p {
    text-align: left;
  }

}

/* Ende Responsive hieu */