@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

/* Standard */
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #221F1F;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  line-height: 1.25em;

}

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

p {
  padding-bottom: 0.375rem;
  text-align: justify;
}

h1 {
  margin: 0 0 0.375rem;
  font-size: 1em;
  line-height: 1.3em;
  text-align: center;
  font-weight: normal;
}

h1 strong {
  font-size: 1.125em;
  line-height: 1.3em;
}

h1 span {
  font-size: 0.7em;
}

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

a {
  color: #221F1F;
  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;
}

ul+p {
  text-align: center;
  padding-bottom: 0;
}

li {
  padding-left: 1rem;
}

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

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

/* Ende Standard */

/* Header */
header {
  padding: 0.125rem 0 0 0;
  float: left;
  margin-right: 1rem;
}

/* Ende Header */

/* Article */
article {
  padding: 1.5rem 1.5rem 0.25rem 1.5rem;
}

/* Ende Article */
aside {
  text-align: right;
  margin-top: -1rem;
}

/* Footer */
footer {
  padding: 0;
  background-color: #EE1D22;
  padding: 0.75rem 1.25rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
}

footer strong {
  display: block;
}

footer p {
  margin-bottom: 0;
  padding-bottom: 0;
  text-align: left;
}

footer p:nth-of-type(2) {
  text-align: right;
}

/* Ende Footer */

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

  i br {
    display: none;
  }

  article {
    padding: 0.75rem 0.75rem 0.25rem 0.75rem;
  }

  footer {
    padding: 0.5rem 0.75rem;
  }

  aside {
    text-align: right;
    margin-top: 0;
  }

  p {
    text-align: left;
  }

}

@media only screen and (max-width:449px) {
  header {
    float: none;
    margin-bottom: 0.5rem;
  }

  footer {
    display: block;
  }

  footer p {
    margin-bottom: 0.375rem;
  }
}

/* Ende Responsive hieu */