@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;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: #231F20;
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  line-height: 1.3em;
  
}

#wrapper {
  position: relative;
  max-width: 508px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #231F20;
  background-color: #fff;
  overflow: hidden;
  padding: 1.7rem 2rem;
}

p {
  padding-bottom: 2rem;
}

h1 {
  margin: -0.2rem 0rem 1.8rem;
  font-size: 1.6em;
  line-height: 1.1em;
  font-weight: 400;
}

h1 span {
  font-size: 0.7em;
  font-weight: 500;
}

h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0.5rem;
}

a {
  color: #231F20;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

ul {
  padding: 0rem 0rem 1.5rem 0rem;
  list-style-image: url();
  list-style: none;
}

li {
  padding-left: 0.7rem;
}

ul li:before {
  content: "-";
  display: inline-block;
  font-size: 1.300em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -0.7rem;
}

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

/* Ende Standard */

/* Header */
header {
  padding: 0rem 0rem 1.8rem;
}

header section {
  display: inline-block;
  position: relative;
}

header a:first-of-type{
  position: absolute;
  top: 0%;
  left: 0%;
  width: 38%;
  height: 82%;
}

header a:last-of-type{
  position: absolute;
  top: 25%;
  right: 0%;
  width: 51%;
  height: 70%;
}

/* Ende Header */

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

/* Ende Article */

/* Footer */
footer {
  padding: 0rem 0rem 0rem;
}

footer a {
  font-size: 0.85em;
}

/* Ende Footer */

/* Responsive */
@media only screen and (max-width:507px) {
  #wrapper {
    border: none;
    margin: 0 auto;
    height: auto;
    padding: 1rem;
  }

  footer a {
    display: inline-block;
  }

  ul, p,header {
    padding-bottom: 1.2rem;
  }

  i br{
    display: none;
  }

}

/* Ende Responsive */
