@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
/* Standard */
:root {
  font-size: 16px;
}

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

html {
  min-height: 100%;
}

body {
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 0.875em;
  line-height: 1.3em;
  
}

#wrapper {
  position: relative;
  max-width: 750px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 2px #00b3aa;
  background-color: #f7fcfc;
  overflow: hidden;
  padding: 0;
}

p {
  margin-bottom: 16px;
}

h1 {
  margin: 0 0 16px; padding-left: 16px;
  font-size: 1em;
  line-height: 1.3; font-weight: normal;
}
h1 strong{ color: #00b3aa;   font-size: 1.3em;
  line-height: 1.1em;}

h1 span {
  font-size: 0.7em;
}
h1:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.75em;
  position: relative;
  float: left;
  top: -4px;
  margin-left: -16px;  color: #00b3aa;
}

h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0; color: #00b3aa; 
} 
h3 {
  font-size: 1.125em;
  line-height: 1.3em;
  margin-bottom: 1rem;  font-weight: normal;
}
h4 {
  font-size: 2.5em;
  line-height: 1.2;
  margin: 1rem 0 1rem 2.0625rem;
  color: #00b3aa;
  font-weight: 500;
  text-align: left;
}
h4 strong{ display: block; font-weight: bold; display: block;}

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

a:hover {
  text-decoration: underline;
}

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

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

li {
  padding-left: 16px;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.75em;
  position: relative;
  float: left;
  top: 0rem;
  margin-left: -16px;  color: #00b3aa;
}

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

/* Ende Standard */

/* Header */
header {
  padding: 1.5625rem 1.5625rem 0rem 1.5625rem;
  background-color: #ecf7f7;
  text-align: center;
  display: flex;
  align-items: center;
}

/* Ende Header */

/* Article */
article {
  padding: 1.5625rem; position: relative;
}

aside{text-align: right;position:  absolute;bottom: 1.25rem;right:1.5625rem;}
/* Ende Article */

/* Footer */
footer {
  padding: 1.5625rem; background-color: #00b3aa; color: #fff; font-weight: bold;
  font-size: 1rem;
  line-height: 1.375rem;
}
footer p {margin-bottom: 0.5625rem;}

footer a { color: #fff;}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:749px) {
  :root {
    font-size: 14px;
  }
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 0;
  }
 ul br{ display: none}
  p {
    text-align: left;
  }
  h4 { text-align: center;}
  header,footer,article {
    padding: 0.625rem;
    display: block;
  }
  aside{text-align: right;position:  static; margin-top: 0.625rem;}
}

/* Ende Responsive */
