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

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

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

html {
  min-height: 100%;
}

body {
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 1.5em;
  line-height: 1.125em;
}

#wrapper {
  position: relative;
  max-width: 365px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0.5rem;
  text-align: left;
  font-weight: 500;
}

h1 {
  margin: 0rem 0rem 0.0625rem;
  font-size: 1.375em;
  line-height: 1.1em;
  text-align: center;
  font-weight: 700;
}

span {
  display: block;
  text-align: justify;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}



/* Hebt Float left/right auf */
.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:369px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    font-size: 0.875em;
  }

  i br {
    display: none;
  }

  span {
    display: inline;
  }

}

/* Ende Responsive hieu */