@charset "utf-8";

/* Standard */
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #303841;
  font-family: Arial, sans-serif;
  font-size: 0.875em;
  line-height: 1.3em;
}

#wrapper {
  position: relative;
  max-width: 640px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 2rem;
}

p {
  padding-bottom: 1rem;
}

h1 {
  margin: 0.5rem 0rem 2rem;
  font-size: 2.2em;
  line-height: 1.1em;
  color: #FF0066;
}

h1 + p, h1 + p + p {
  color: #FF0000;
}

h2 {
  font-size: 1.1em;
  line-height: 1.3em;
  margin-bottom: 0;
  font-weight: normal;
}

a {
  color: #303841;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

ul {
  padding: 0rem 0rem 4rem;
  list-style: none;
}

li {
  padding-left: 1rem;
}

ul li:before {
  content: "»";
  display: inline-block;
  font-size: 1.2000em;
  position: relative;
  float: left;
  margin-left: -1rem;
}

/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}

/* Ende Standard */

/* Header */
header {
  padding: 0rem 0rem 0rem;
  text-align: center;
}

/* Ende Header */

/* Article */
article {
  padding: 0rem 0rem 0rem;
  display: flex;
  justify-content: space-between;
}

article section {
  width: 47%;
}

/* Ende Article */

/* Footer */
footer {
  display: inline-block;
}

footer > p {
  line-height: 1.7;
}

footer aside {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}

footer aside p:first-of-type {
  text-align: center;
}

footer aside p:last-of-type span:first-of-type a {
  color: #ffb300;
}

footer aside p:last-of-type span:nth-of-type(2) a {
  color: #fe860c;
}

footer aside p:last-of-type span:last-of-type a {
  color: #cd045b;
}

footer span {
  display: inline-block;
  width: 12rem;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:640px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 1rem;
  }

  ul {
    padding-bottom: 1rem;
  }

  h1 {
    font-size: 1.6em;
    line-height: 1.3;
  }

  header br, i br {
    display: none;
  }

  article {
    display: block;
  }

  article section {
    width: auto;
  }

  footer aside {
    position: static;
  }

}

/* Ende Responsive */
