@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700&display=swap');

:root {
  font-size: 16px;
}

/* Standard */
* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #000;
  font: 1em 'Roboto Condensed', sans-serif;
  line-height: 1.3;
  font-weight: 300;
}

#wrapper {
  position: relative;
  max-width: 570px;
  margin: 1rem auto;
  border: solid 2px #000;
  background: #fff;
  overflow: hidden;
  padding: 0.8rem;
  text-align: justify;
}

a {
  color: #000;
  text-decoration: none;
}

p {
  padding-bottom: 1.25rem;
}

h1 {
  margin: 0rem 0rem 1.25rem 0rem;
  padding: 0rem 0rem 0rem;
  font-size: 2.1em;
  line-height: 1.1em;
  color: #EE3449;
  text-align: center;
}

h1 small {
  font-size: 0.7em;
}

h2 {
  font-size: 1.15em;
  line-height: 1.2em;
  padding: 0rem 0rem 0.3rem 0rem;
  color: #EE3449;
}

strong, h1, h2 {
  font-weight: 700;
}

ul {
  padding: 0rem 0rem 1.25rem 0rem;
  list-style: none;
}

li {
  padding-left: 0.7rem;
}

/*25A0 - square / 2010 - dash / 2212 - long dash*/
li:before {
  content: "»";
  display: inline-block;
  font-size: 1.1em;
  line-height: 1;
  position: relative;
  float: left;
  top: -2px;
  margin-left: -0.7rem;
  color: #EE3449;
  font-weight: 700;
}

/* Ende Standard */

/*main*/

/*End main*/

/* Header */
header {
  padding: 0rem 0.5rem 1rem;
}
header a{
  float: left;
}
header a:last-of-type{
  float: right;
}
/* Ende Header */

/* Article */
article {
  padding: 0rem 0rem 0rem;
}

aside {
  float: left;
  width: 260px;
}

aside:last-of-type {
  float: right;
  width: 260px;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0rem 0rem 0rem;
  font-size: 1.125em;
  line-height: 1.2;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:570px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    padding: 1rem;
    text-align: left;
  }
  h1{
    font-size: 1.8em;
  }
  aside, aside:last-of-type {
    float: none;
    width: 100%;
  }

}

/* 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;
}
