@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin: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: 'Libre Franklin', sans-serif;
  font-size: 0.8125em;
  line-height: 1.3em;

}

#wrapper {
  position: relative;
  max-width: 500px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 0px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
  background: #fff url("bg.jpg") no-repeat 0 0;
}

p {
  padding-bottom: 1rem;
}

h1 {
  margin: 0 0 1rem 16px;
  font-size: 2em;
  line-height: 1.25em;
  color: #fff;
}

h1 span {
  color: #FFF101;
}

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;
  vertical-align: bottom;
}

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

li {
  padding-left: 1.125rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.75em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1.125rem;
  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 0 0;
  position: relative;
}

header a {
  position: absolute;
  top: 8%;
  left: 6%;
  width: 17%;
  height: 16%;
  display: block;
  z-index: 9999;

}

header img+a {
  position: absolute;
  top: 9%;
  left: auto;
  right: 6%;
  width: 20%;
  height: 7%;
  display: block;
  z-index: 9999;

}

/* Ende Header */

/* Article */
article {
  padding: 1.3125rem 1.875rem 24px;
}

section {
  position: relative;
  color: #fff;
}

ul:nth-of-type(3) {
  color: #FFF101;
}

section ul:nth-of-type(2) {
  position: absolute;
  top: 3.125rem;
  left: 11.875rem;
}

/* Ende Article */

/* Footer */
footer {
  padding: 1.625rem 0 0;
  font-size: 0.875em;
  line-height: 1.3125em;
  color: #fff;
}

footer p {
  position: absolute;
  bottom: 0.6875rem;
  right: 1.8125rem;
}

footer a {
  color: #fff;
}

footer span {
  display: block;
  margin: 0.1875rem 0;
}

aside {
  position: absolute;
  top: 31.125rem;
  left: 21.8125rem;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:499px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 0;
    background-image: none;
  }

  i br {
    display: none;
  }

  article {
    padding: 0;
  }

  ul {
    padding-bottom: 0;
  }

  section ul:nth-of-type(2) {
    position: static;
    top: 0px;
    left: 187px;
    margin-bottom: 1rem;
  }

  section {
    padding: 0.75rem;
    background-color: #E22F2A;
  }

  aside {
    padding: 0.75rem;
    background-color: #EBDE00;
    position: static;
  }

  footer {
    padding: 0.75rem;
    background-color: #9C9C9A;
  }

  footer p {
    position: static;
    margin: 1rem 0 0 0;
    padding-bottom: 0;
  }

  p {
    text-align: left;
  }

}

/* Ende Responsive hieu */