@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: #000;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8125em;
  line-height: 1.5em;

}

#wrapper {
  position: relative;
  max-width: 750px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 2rem 0;
  text-align: justify;
}

p {
  margin-bottom: 1.5rem;
}

h1 {
  margin: 0rem 0rem 1.5rem;
  font-size: 1.75em;
  line-height: 1.65em;
}

h1 span {
  font-size: 0.7em;
}

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

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

li {
  padding-left: 0.75rem;
}

ul li:before {
  content: "\25A0";
  display: inline-block;
  font-size: 0.625em;
  position: relative;
  float: left;
  top: -2px;
  margin-left: -0.75rem;
}

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

/* Ende Standard */

/* Header */
header {
  padding: 0 0 0rem;
  text-align: center;
}

header p {
  font-size: 1.07em;
  line-height: 1.65em;
}

/* Ende Header */

/* Article */
article {
  padding: 0;
  max-width: 630px;
  margin: 0 auto;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0rem 0rem 0rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.875em;
}

footer strong {
  font-size: 1.25em;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:749px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 1rem;
    text-align: left;
  }

  i br {
    display: none;
  }

  p {
    text-align: left;
  }

  header p {
    text-align: center;
  }
}

/* Ende Responsive hieu */