@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&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.5em;
}

#wrapper {
  position: relative;
  max-width: 840px;
  margin: 1rem auto;
  border: solid 1px #FECA0A;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}

main{
  position: relative;
}

p {
  padding-bottom: 0;
}

h1 {
  margin: 0rem 0rem 0rem;
  font-size: 1.85em;
  line-height: 1.25em;
  font-weight: normal;
}

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 0rem 0rem;
  list-style-image: url();
  list-style: none;
}

li {
  padding-left: 1rem;
}

ul li:before {
  content: "■";
  display: inline-block;
  font-size: 1.300em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1rem;
  color: #FECA0A;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}

/* Ende Standard */

/* Header */
header {
  padding: 0.5rem 1rem;
  background-color: #FECA0A;
  text-align: center;
}

/* Ende Header */

/* Article */
article {
  padding: 0.2rem 0rem 0rem 3rem;
}

article section{
  float: left;
  width: 257px;
  margin-right: 1rem;
  padding-bottom: 1rem;
}

article section:last-of-type{
  width: 170px;
}

article > p{
  position: absolute;
  bottom: 1rem;
  left: 3rem;
  font-size: 1.2em;
}

footer > a img{
  position: absolute;
  bottom: 1.3rem;
  right: 1rem;
}

footer p{
  display: none;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0rem 1rem 0rem;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:839px) {

    #wrapper {
    height: auto;
    background-color: #fff;
    padding: 0;
    max-width: 500px;
  }

  h2{
    margin-top: 0.2rem;
  }

  footer p{
  display: block;
  padding-bottom: 1rem;
  margin-top: -0.5rem;
}

article section:first-of-type p{
  display: none;
}

h1{
  font-size: 1.6em;
}

article {
  padding: 0.2rem 1rem 1rem;
}

article section,article section:last-of-type{
  float: none;
  width: 100%;
  margin-right: 0rem;
  padding-bottom: 0rem;
}

article > p{
  position: static;
  padding-top: 0.6rem;
}

footer > a img{
  position: static;
  margin-bottom: 1rem;
}

i br{
  display: none;
}

}

@media only screen and (max-width:500px) {
#wrapper {
  margin: 0rem auto;
  border: none;
}
}


/* Ende Responsive */
