:root {
  --bg-body: lightgrey;
  --bg-head: wheat;
  --color: wheat;
  --caption: #543215;
  --bg-wrapper: wheat;
  --bg-section-1: #a66d3a;
  --bg-section-2: #7d4e24;
  --bg-table-1: var(--bg-section-1);
  --bg-table-2: var(--bg-section-2);
  --border: grey;
  --link-primary: black;
  --link-secondary: brown;
  --color-shadow: wheat;
  --color-box-shadow: #2c2c2c;
  --text-shadow: 1px 1px 0 var(--color-shadow), 0 1px 0 var(--color-shadow), 1px 0 0 var(--color-shadow), -1px 0 0 var(--color-shadow), -1px -1px 0 var(--color-shadow), 0 -1px 0 var(--color-shadow);
  --box-shadow: 1px 1px 0 var(--color-box-shadow);
}

* {
  line-height: 1.5em;
}

body {
  font-size: 12pt;
  background-color: var(--bg-body);
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: var(--color);
}

.wrapper {
  margin: 0 auto;
  max-width: 1000px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background-color: var(--bg-wrapper);
  box-shadow: 0 0 25px darkgrey;
  position: relative;
  min-height: 100vh;
  height: 100%;
  flex-direction: column;
}

a, a:link, a:visited {
  color: var(--link-primary);
  text-decoration: underline;
  padding-left: 0.125em;
  padding-right: 0.125em;
  hyphens: none;
}
a:hover {
  color: var(--link-secondary);
  background-color: var(--link-primary);
}

header {
  text-align: center;
  background: var(--bg-head);
  max-height: 90px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header img {
  max-width: calc(100% - 20px);
  width: 450px;
  margin: 1px auto 5px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(1px 1px 1px #999999);
}
header .vorort-liste {
  position: absolute;
  background: hsla(207, 90%, 54%, 0.73);
  border-radius: 0 105px 100px 0;
  overflow: hidden;
  z-index: 10;
  top: calc(50% - 1em);
}
header .vorort-liste a, header .vorort-liste a:link, header .vorort-liste a:visited {
  color: white;
  text-decoration: none;
  display: block;
  padding: 0.1em 0.5em 0.1em 0.25em;
}
header .vorort-liste a:hover {
  background-color: white;
  color: #2196f3;
}

caption,
h1,
h2,
h3,
h4 {
  margin-top: 0;
  margin-bottom: 0.25em;
  color: var(--caption);
  text-shadow: var(--text-shadow);
}

h1 {
  margin: 0;
  text-align: center;
}

main {
  flex-wrap: wrap;
  display: flex;
  margin: auto;
  padding: 0.25em 0.25em 2em;
  flex: 2;
  min-height: calc(100vh - 95px - 2em);
}

figure {
  display: contents;
}

figcaption, .quote {
  margin-top: 0.25em;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-size: 0.8em;
}

.quote, figcaption {
  font-style: italic;
  font-family: serif;
}

.smalltext {
  font-size: 0.8em;
}

.col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.col h1,
.col section {
  padding: 0.5em;
  background-color: var(--bg-section-1);
  margin: 0.25em;
  flex-grow: 1;
  min-height: 1px;
}
.col p {
  text-align: justify;
  hyphens: auto;
}
.col section {
  box-shadow: var(--box-shadow);
}
.col section:nth-of-type(odd) {
  background-color: var(--bg-section-2);
}
.col .flex-text,
.col section:last-of-type {
  flex-grow: 3 !important;
}

.row-bottom section:nth-of-type(odd) {
  background-color: var(--bg-section-1);
}
.row-bottom section:nth-of-type(even) {
  background-color: var(--bg-section-2);
}

.col-left {
  flex: 3;
}
.col-left section {
  padding-bottom: 1.5em;
}

.col-right {
  flex: 2;
  max-width: 400px;
}
.col-right img {
  width: 100%;
}
.col-right em {
  margin-top: 0.25em;
  text-align: center;
  font-size: 0.8em;
  font-style: italic;
  font-family: serif;
  display: inline-block;
  width: 100%;
}

footer {
  text-align: center;
  font-size: 0.8em;
  padding-bottom: 0.25em;
  position: absolute;
  background-color: var(--bg-head);
  bottom: 0;
  width: 100%;
  color: saddlebrown;
}

h2 + p {
  margin: 0;
}

h3 + p {
  margin-top: 0.25em;
}

table {
  background-color: white;
}
table tr td {
  background-color: var(--bg-table-1);
  padding: 0.25em;
}
table tr td:first-of-type {
  padding-right: 2em;
  width: 33%;
  font-weight: bold;
}
table tr:nth-of-type(even) td {
  background-color: var(--bg-table-2);
}

@media screen and (max-width: 570px) {
  .wrapper {
    box-shadow: none;
    position: relative;
    padding-bottom: 4rem;
    min-height: 100vh;
  }
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  header img {
    max-height: 45px;
    width: auto;
  }
  footer {
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 500px) {
  body {
    font-size: 11pt;
  }
  .col {
    min-width: 100%;
  }
}

/*# sourceMappingURL=deutschland.css.map */
