@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Standard */
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  min-height: 100%;
}

body {
  color: #4D4D4F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.875em;
  line-height: 1.3em;
  
}

#wrapper {
  position: relative;
  max-width: 715px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #4D4D4F;
  background-color: #fff;
  overflow: hidden;
  padding: 0rem;
}

p {
  padding-bottom: 0.5rem;
}

h1, h2 {
  margin: 0rem;
  font-size: 1.465em;
  line-height: 1.2em;
}

h3{
  font-size: 1em;
  line-height: 1.3em;
  font-weight: 400;
  width: 7rem;
}

a {
  color: #4D4D4F;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

ul {
  padding: 0rem 0rem 0.5rem;
  list-style-image: url();
  list-style: none;
  width: 550px;
}

li {
  padding-left: 0.625rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.5em;
  line-height: 0.875;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -0.625rem;
}

/* Ende Standard */

/* Header */
header {
  padding: 0rem;
}

/* Ende Header */

/* Article */
article {
  padding: 0.5rem 0.8rem 0rem;
}

article p:first-of-type {
    font-size: 0.95em;
    line-height: 1.3em;
}
article aside{
  display: flex;
  justify-content: flex-start;
}
/* Ende Article */

/* Footer */
footer {
  text-align: center;
  padding: 0rem 0.8rem;
  font-size: 1.2em;
  line-height: 1.3em;
}
footer p{
  padding-top: 0.5rem;
  border-top: 2px solid;
  display: inline-block;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:714px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
  }
  span{
    display: inline-block;
  }

  p {
    text-align: left;
  }

  article aside{
    display: block;
  }
  h3{
    width: auto;
  }
  ul{
    width: 100%;
  }
}

/* Ende Responsive */
