@charset "utf-8";

:root {
  font-size: 16px;
}

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

html {
  min-height: 100%;
}

body {
  color: #000;
  font: 1em Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.3;
}

#wrapper {
  position: relative;
  max-width: 665px;
  margin: 1rem auto;
  background: #fff;
  overflow: hidden;
  text-align: center;
}

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

a span {
  color: #EE1D23;
}

p {
  padding-bottom: 1rem;
}

h1 {
  margin: 0rem 0rem 1rem 0rem;
  padding: 0rem 0rem 0rem;
  font-size: 1.75em;
  line-height: 1.1em;
}

h1 small {
  font-size: 0.7em;
}

h2 {
  font-size: 1.15em;
  line-height: 1.2em;
  padding: 0rem 0rem 1rem 0rem;
}

ul {
  padding: 0rem 0rem 1rem 0rem;
  list-style: none;
}

li {
  padding-left: 1rem;
}

/*25A0 - square / 2010 - dash / 2212 - long dash*/
li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.3em;
  line-height: 1;
  position: relative;
  float: left;
  top: 0px;
  margin-left: -1rem;
}

/* Ende Standard */

/*main*/
main {
  display: block;
  border: solid 12px #EE1D23;
  padding: 1rem;
}

/*End main*/

/* Header */
header {
  padding: 0rem 0rem 0rem;
}

/* Ende Header */

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

/* Ende Article */

/* Footer */
footer {
  padding: 0rem 0rem 0rem;
}
footer strong{
  position: relative;
  z-index: 4;
}
footer img{
  position: absolute;
  right: 12px;
  bottom: 0;
}
/* Ende Footer */

/* Responsive */
@media only screen and (max-width:665px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
  }
  main{
    border: none;
    padding: 0;
  }
  header br, article br {
    display: none;
  }
  footer img{
    position: static;
  }
}

/* Ende Responsive */
a:hover {
  text-decoration: underline;
}

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

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