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

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

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

html {
  min-height: 100%;
}

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

}

#wrapper {
  position: relative;
  max-width: 710px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 3px #693A03;
  background-color: #fff;
  overflow: hidden;
  padding: 0rem;
}

p {
  margin: 0.25rem 0;
}

h1 {
  margin: 0.875rem 0rem;
  font-size: 1em;
  line-height: 1.25em;
  color: #693A03;
}

h1 strong {
  font-weight: bold;
  font-size: 2.1875em;
  line-height: 1.3em;
}

h1 small {
  font-size: 1em;
}

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

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

a:hover {
  text-decoration: underline;
}

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

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

li {
  padding-left: 0.875rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.75em;
  position: relative;
  float: left;
  top: 0;
  margin-left: -0.875rem;
  color: #693A03;
}

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

/* Ende Standard */

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

header aside {
  float: right;
  margin-left: 1.75rem;
  margin-top: -0.25rem;
}

header p {
  padding: 0rem 0rem 0rem;
  margin: 0 0 0.25rem;
  text-align: justify;
}

/* Ende Header */

/* Article */
article {
  padding: 0.9375rem 1.25rem 0.625rem;
}

section {
  position: relative;
}

section ul:nth-of-type(2) {
  position: absolute;
  top: 0px;
  left: 50%;
}


aside {
  text-align: center;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0rem 0rem 0rem;
  background-color: #693A03;
  padding: 0.25rem 0.625rem;
  text-align: center;
  color: #fff;
}

/* Ende Footer */

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

  i br {
    display: none;
  }

  article {
    padding: 0.625rem 0.75rem;
  }

  header p {
    text-align: left;
  }

  aside p {
    text-align: center;
  }

  section ul:nth-of-type(2) {
    position: static;
  }

  p {
    text-align: left;
  }
}

@media only screen and (max-width:539px) {
  header aside {
    float: none;
    margin-left: 1.75rem;
    margin-top: -0.25rem;
    padding-bottom: 1rem;
  }
}

/* Ende Responsive hieu */