
@charset "utf-8";
/* Standard */
@import url('https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i,900,900i');

:root {  font-size:16px;}
* {
   box-sizing:border-box;
   margin: 0;
}

html {
   min-height: 100%;
}
   
body {
   color:#333;
   font-family:'Lato', Helvetica, Arial, sans-serif;
   font-size:0.938em;
   line-height:1.3em;
}

#wrapper {
   position:relative;
   max-width:790px;
   margin: 1rem auto;
   box-shadow: -0.1rem 0.1rem 1rem #999;
   background:#fff;
   overflow:hidden;
   padding: 2rem 2rem 0;
}
a {
   color: #05a3aa;
   text-decoration:none;
}
p {
   padding-bottom: 1rem;
}


h1 {
   margin: 0.5rem 0rem;
   font-size:1.692em;
   color: #05a3aa;
   text-align: center;
   line-height:1.1em;
}

h1 span {
   font-size:0.7em;
   display: block;
}

h2 {
   font-size:1.1em;
   line-height:1.2em;
   margin-bottom:0.5rem;
   text-decoration: underline;
   color: #05a3aa;
}
h3 {
   font-size:1em;
   line-height:1.3;
   margin-bottom:0;
}

ul {
   padding: 0 0 1.25rem;
   list-style-image:url(); 
   list-style:none;
}

li {
   padding-left:1.25rem;
}
ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.300em;
  font-family: Helvetica, Arial, sans-serif;
  position: relative;
  float: left;
  top: 0px;
  margin-left: -1.25rem;
}

/* Hebt Float left/right auf */

/* Ende Standard */


/* Header */
header {
  padding: 0rem 0 1rem;
  text-align: center;
}
header img{
   width: 175px;
}
/* Ende Header */

/* Article */
article {
  padding: 0rem;
}
article aside{
   float: left;
   width: 48%;
}
article aside:last-of-type{
   float: right;
}
/* Ende Article */

/* Footer */
footer {
   margin: 0 -2rem;
  padding: 1rem 2rem;
  background: #ECECEC;
}
/* 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:790px) {
   #wrapper {
      border:none;
      margin: 0 auto;
      padding: 1rem 1rem 0;
   }
   article aside,
   article aside:last-of-type{
      float: none;
      width: 100%;
   }
   article section:last-of-type aside:first-of-type ul{
      padding-bottom: 0;
   }
   p {
    text-align: left;
   }
  i br{
    display: none;
  }
}
@media only screen and (max-width:475px) {
   body{
      font-size: 0.9em;
   }
}
/* Ende Responsive */
/* Tin developer */