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

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

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

html {
  min-height: 100%;
}

body {
  color: #242021;
  font-family:Open Sans, Helvetica, Arial, sans-serif;
  font-size: 1.35em;
  line-height: 1.2em;
  font-weight: 300;
  
}

#wrapper {
  position: relative;
  max-width: 502px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 2px #000;
  background-color: #fff;
  overflow: hidden;
  text-align: center;
  padding:0.75rem 1rem 0.5rem;
}

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


h1 {
   margin: 0rem 0rem 0.5rem;
   font-size:1.692em;
   font-weight: 700;
   line-height:1.1em;
}

h1 span {
   font-size:0.6em;
   font-weight: 300;
}
/* Header */
header {
  padding: 0rem;
}
/* Ende Header */

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

/* Footer */
footer {
  padding: 0rem;
}
/* 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:502px) {
   #wrapper {
      border:none;
      margin: 0 auto;
   }
   body{
      font-size: 1.125em;
      line-height: 1.3;
   }
  i br{
    display: none;
  }
}
@media only screen and (max-width:375px) {
   body{
      font-size: 1em;
   }
}
/* Ende Responsive */