@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
/* Standard */
:root {
  font-size: 16px;
}

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

html {
  min-height: 100%;
}

body {
  color: #231F20;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1em;
  line-height: 1.3em;
  
}

#wrapper {
  position: relative;
  max-width: 715px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #231F20;
  background-color: #EE3E35;
  overflow: hidden;
  padding: 0rem;
}

p {
  padding-bottom: 0.5rem;
}

h1 {
  margin: 0rem 0rem 0.8rem;
  padding: 0.3rem 0.7rem 1.4rem;
  font-size: 1.25em;
  line-height: 1.1em;
  background-color: #231F20;
  color: #EE3E35;
}

h1 span {
  font-size: 0.7em;
}

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

h3 {
  font-size: 4em;
  line-height: 1em;
  margin-bottom: 1.3rem;
}

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

a:hover {
  text-decoration: underline;
}

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

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

li {
  padding-left: 0.7rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.500em;
  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 0rem;
}

header a img{
  position: absolute;
  left: 20px;
  top: 20px;
}

header > img{
  position: absolute;
  left: 0px;
  top: 395px;
}

/* Ende Header */

/* Article */
article {
  padding: 4rem 0rem 0.5rem;
  float: right;
  width: 480px;
  margin-right: 1.2rem;
}


/* Ende Article */

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

footer strong {
  position: absolute;
  bottom: 1rem;
  left: 1.2rem;
}

/* Ende Footer */

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

 h3 {
  font-size: 2em;
  line-height: 1.3em;
  margin-bottom: 1rem;
}

header a img,footer strong{
  position: static;
}

header > img{
  display: none;
}

article {
  padding: 1rem 0rem 0rem;
  float: none;
  width: 100%;
  margin-right: 0rem;
}

article p:last-of-type{
  padding-bottom: 0;
}

footer {
  padding: 0rem 0rem 0rem;
}

}

/* Ende Responsive */
