
@charset "utf-8";
/* Standard */
@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i&display=swap');

:root {  font-size:16px;}
* {
   box-sizing:border-box;
   margin: 0;
}

html {
   min-height: 100%;
}
   
body {
   color:#FFF;
   font-family:'Roboto', Helvetica, Arial, sans-serif;
   font-size:1.75em;
   line-height:1.1;
}

#wrapper {
   position:relative;
   max-width:380px;
   margin: 1rem auto;
   border:solid 0px #000;
   background-color:#22272B;
   overflow:hidden;
   padding:1rem 1rem 0.75rem;
}
a {
   color:#FFF;
   text-decoration:none;
}
p {
   padding-bottom: 1rem;
}


h1 {
   margin: 0rem 0rem 0rem;
   font-size:1em;
   text-align: right;
   line-height:1.1em;
}

h1 span {
   font-size:0.7em;
}

h2 {
   font-size:1em;
   line-height:1.2em;
   margin-bottom:0;
}
h3 {
   font-size:1em;
   line-height:1.3;
   margin-bottom:0;
}

ul {
   padding: 0px 0px 16px 0px;
   list-style-image:url(); 
   list-style:none;
}

li {
   padding-left:12px;
}
ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  font-family: Helvetica, Arial, sans-serif;
  position: relative;
  float: left;
  top: 0px;
  margin-left: -12px;
}

/* Hebt Float left/right auf */

/* Ende Standard */


/* Header */
header {
  float: left;
  padding: 0rem;
}
header img{
  width: 135px;
}
/* Ende Header */

/* Article */
article {
  padding: 0rem;
  float: right;
  width: 56%;
}
article img{
  width: 85px;
  margin-top: -1.5rem;
}
/* Ende Article */

/* Footer */
footer {
  padding:0.75rem 0 0rem;
  text-align: center;
}
/* 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:380px) {
   #wrapper {
      border:none;
      margin: 0 auto;
   }
   body{
    font-size: 1.5em;
   }
   header{
    float: none;
    margin-bottom: 0.75rem;
   }
   article{
    float: none;
    width: 100%;
   }
   article img{
    margin-top: 0.75rem;
   }
   h1{
    text-align: left;
   }
   p {
    text-align: left;
   }
  i br{
    display: none;
  }
}
/* Ende Responsive */
/* Tin developer */