@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i');

/* Standard */
:root {
  font-size: 16px;
}

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

html {
  min-height: 100%;
}

body {
  color: #242021;
  font-family:'Roboto Condensed', Helvetica, Arial, sans-serif;
  font-size: 1.2em;
  line-height: 1.1em;
  
}

#wrapper {
  position: relative;
  max-width: 445px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 2px #242021;
  background-color: #fff;
  overflow: hidden;
  padding:0.625rem;
}

a {
   color:#242021;
   text-decoration:none;
}
p {
   padding-bottom: 0.625rem;
   text-align: center;
}


h1 {
   margin: 1rem 0rem 0.5rem;
   font-size:2.2em;
   line-height:1em;
}

h1 span {
   font-size:0.7em;
}

h2 {
   font-size:1em;
   line-height:1.2em;
   margin-bottom:0;
}
h3 {
   font-size:1.125em;
   line-height:1.3;
   padding: 0.2rem 0.35rem;
   background-color: #107AA5;
   color: #FFF;
   font-weight: 400;
}

ul {
   padding: 0px 0px 12px;
   list-style-image:url(); 
   list-style:none;
}

li {
   padding-left:12px;
}
ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.500em;
  position: relative;
  font-family: Helvetica, Arial, sans-serif;
  float: left;
  top: -1px;
  margin-left: -12px;
}

/* Hebt Float left/right auf */

/* Ende Standard */


/* Header */
header {
  padding: 0rem;
  text-align: center;
}
header aside{
   margin: 0.2rem -0.625rem 1rem;
}
/* Ende Header */

/* Article */
article {
  padding: 0rem;
}
article p:first-of-type{
   text-align: justify;
}
article p:last-of-type{
   color: #107AA5;
}
/* Ende Article */

/* Footer */
footer {
  padding: 0.2rem 0.75rem;
  height: 26px;
  color: #FFF;
  background: url('bg.jpg') no-repeat bottom right,#117AA7;
}
footer a{
   color: #FFF;
   float: right;
}
/* Ende Footer */
.clearfix:after {
   content: ".";
   clear: both;
   display: block;
   visibility: hidden;
   height: 0px;
}
a:hover {
   text-decoration:underline;
}
i{
  font-style: normal;
}
img {
   max-width:100%;
   height:auto;
   display: inline-block;
   vertical-align: middle;
}

/* Responsive */
@media only screen and (max-width:445px) {
   #wrapper {
      border:none;
      margin: 0 auto;
   }
   body{
      font-size: 1em;
   }
   article p:first-of-type {
    text-align: left;
   }
   h1{
      font-size: 1.8em;
   }
  i br{
    display: none;
  }
}
@media only screen and (max-width:320px) {
   footer {
      background: #117AA7;
      height: auto;
      padding: 0.2rem 0.5rem 0;
   }
   footer span{
      display: block;
      padding: 0.2rem 0.5rem;
      margin: 0.5rem -0.5rem 0;
      background: #818284;
   }
   footer a{
      float: none;
   }
}
/* Ende Responsive */