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

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

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

html {
  min-height: 100%;
}

body {
  color: #626974;
  font-family:'Roboto', Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.3em;
  
}

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

a {
   color:#626974;
   text-decoration:none;
}
p {
   padding-bottom:0.35rem;
}


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

h1 span {
   font-size:0.7em;
}
h1:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  font-family: Helvetica, Arial, sans-serif;
  float: left;
  top: 0px;
  margin-left: -1rem;
}
h1 + p{
   padding-left: 2rem;
}


/* Header */
header {
  padding: 0rem 0 0.5rem;
  text-align: center;
}
/* Ende Header */

/* Article */
article {
  padding: 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:622px) {
   #wrapper {
      border:none;
      margin: 0 auto;
   }
   body{
      font-size: 0.938em;
   }
   h1{
      margin-left: 1rem;
   }
   h1 + p {
    padding-left: 1rem;
   }
}
/* Ende Responsive */