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

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

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

html {
  min-height: 100%;
}

body {
  color: #000;
  font-family: 'EB Garamond', serif;
  font-size: 1.5em;
  line-height: 1.125em;
}

#wrapper {
  position: relative;
  max-width: 416px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 3px #7E8966;
  background-color: #e9e9e6;
  overflow: hidden;
  padding: 0rem;
}

p {
  padding-bottom: 0.5rem;
}

p:last-child {
  padding-bottom: 0;
}

h1 {
  margin: 0rem 0rem 0rem;
  font-size: 1.25em;
  line-height: 1.1em;
  font-family: 'Roboto', sans-serif;
  padding-left: 1rem;
}

h1:before {
  content: "\2022";
  display: inline-block;
  font-size: 0.875em;
  position: relative;
  float: left;
  top: 2px;
  margin-left: -1rem;
}

h1 span {
  font-size: 0.7em;
  display: block;
  line-height: 1.125em;
}

h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0.4375rem;
  text-align: center;
}

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

a:hover {
  text-decoration: underline;
}

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

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

/* Ende Standard */

/* Header */
header {
  padding: 0rem 0rem 0rem;
  text-align: center;
}

header aside {
  padding: 0.625rem;
}

/* Ende Header */

/* Article */
article {
  padding: 0.625rem;
  text-align: justify;
}

/* Ende Article */

/* Footer */
footer {
  padding: 0 0.625rem 0.625rem 0.625rem;
  text-align: center;
  font-size: 0.9375em;
}

footer P:nth-of-type(1) {
  letter-spacing: 0.2px;
}

footer strong span {
  letter-spacing: -0.2px;
}

/* Ende Footer */

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

  i br {
    display: none;
  }

  article p {
    text-align: left;
  }
}

/* Ende Responsive hieu */