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

}

#wrapper {
  position: relative;
  max-width: 420px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 2px #757F9D;
  background-color: #fff;
  overflow: hidden;
  padding: 0.5rem 1rem;
}

strong {
  color: #757F9D;
}

p {
  padding-bottom: 0.5rem;
}

h1 {
  margin: 0;
  font-size: 1em;
  line-height: 1.375em;
  color: #757F9D;
}



h1 strong {
  font-size: 2em;
  line-height: 1.25;
}

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

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

a:hover {
  text-decoration: underline;
}

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

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

ul:nth-of-type(1) {
  margin-bottom: 0.75rem;
}

li {
  padding-left: 1.5rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.5em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1rem;
  color: #757F9D;
  font-family: Arial, "Helvetica Neue", 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 0 0.75rem;
  text-align: center;
}

/* Ende Header */
section {
  text-align: center;
  margin-bottom: 0.75rem;
}

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

/* Ende Article */

/* Footer */
footer {
  padding: 0.25rem 0 0;
  border-top: 2px solid #757F9D;
  text-align: center;
  margin-top: 0.25rem;
}

/* Ende Footer */

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

  i br {
    display: none;
  }

}

/* Ende Responsive hieu */