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

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

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

html {
  min-height: 100%;
}

body {
  color: #53453E;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3125em;
  line-height: 1.5em;
}

#wrapper {
  position: relative;
  max-width: 750px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 2px #F0E1D2;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}

p {
  padding-bottom: 1rem;
}

h1 {
  margin: 1.5rem 0 0;
  font-size: 1.4375em;
  line-height: 1.1em;
  font-family: 'Times New Roman', Times, serif;
}

h1 span {
  font-size: 0.7em;
}

h2 {
  font-size: 1.125em;
  line-height: 1.3em;
  margin: 1.25rem 0 0.75rem;
  font-weight: 600;
}

h3 {
  font-size: 0.875em;
  line-height: 1.5em;
  margin: 0 0.75rem 1rem;
  font-weight: 600;
  text-align: center;
}

a {
  color: #53453E;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

li {
  padding-left: 1.3rem;
}

ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.25em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1.3rem;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

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

/* Ende Standard */

/* Header */
header {
  padding: 0 0 0;
  position: relative;
}

header a {
  position: absolute;
  top: 11%;
  left: 5%;
  width: 44%;
  height: 16%;
  display: block;
  z-index: 9999;
}

/* Ende Header */

/* Article */
article {
  padding: 2.5rem 2.5rem .75rem 2.5rem;
  position: relative;
}

section {
  padding: 2.25rem 2.8125rem 2.75rem 2.875rem;
  background-color: #F0E1D2;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.9375em;
  line-height: 1.4;
}

/* Ende Article */

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

/* Ende Footer */

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

  article {
    padding: 0 1rem 1rem 1rem;
    position: relative;
  }

  section {
    padding: 1rem;
    margin: 0 -1rem 1rem;
    position: static;
  }

  p {
    text-align: left;
  }

  i br {
    display: none;
  }
}

/* Ende Responsive hieu */