:root {
  --bg-body: #afb9c6;
  --bg-head: none;
  --color: #232323;
  --caption: #e7e7de;
  --bg-wrapper: none;
  --bg-section1: hsl(215.39deg 20.64% 90.21% / 64%);
  --bg-section2: hsl(197.35deg 100% 98.87% / 64%);
  --bg-table1: hsl(221.5deg 63.18% 57.24% / 11%);
  --bg-table2: rgb(247 250 255);
  --border: grey;
  --bg-shadow: #8b90bc;
  --link-primary: blue;
  --link-secondary: white;
}

* {
  line-height: 1.5em;
}

body {
  font-size: 12pt;
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  text-align: justify;
  color: var(--color);
  background: var(--bg-body) linear-gradient(to bottom, #afb9c7 3%, #e0e4ed 18%, #bcc1ce 35%, #bec1c6 51%, #f2f5fb 69%, #f6f8fb 88%, #c2c6cd 100%);
}

.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;
  display: flex;
  flex-direction: column;
}

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

a:hover {
  color: var(--link-secondary);
  background-color: var(--link-primary);
}

header {
  text-align: center;
  max-height: 95px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header img {
  max-width: calc(100% - 20px);
  margin: 5px auto 0;
  height: auto;
  flex-shrink: 0;
  width: 381px;
}
header .vorort-liste {
  position: absolute;
  background: hsla(207, 90%, 54%, 0.73);
  border-radius: 0 105px 100px 0;
  overflow: visible;
  z-index: 10;
  top: calc(50% - 1em);
}
header .vorort-liste a,
header .vorort-liste a:link 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: 1px 1px 1px black, 0 1px 1px black, 1px 0 1px black, -1px 0 1px black, -1px -1px 1px black, 0 -1px 1px black;
}

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);
}

.col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.col h1,
.col section {
  padding: 0.5em;
  background-color: var(--bg-section1);
  margin: 0.25em;
  flex-grow: 1;
  min-height: 1px;
}
.col section {
  padding: 1rem;
  box-shadow: 0 0 2px var(--bg-shadow);
}
.col section p {
  text-align: justify;
  hyphens: auto;
}
.col figure {
  display: contents;
}
.col figcaption {
  margin-top: 0.25em;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-size: 0.8em;
}
.col .quote, .col figcaption {
  font-style: italic;
  font-family: serif;
}
.col .smalltext {
  font-size: 0.8em;
}
.col section:nth-of-type(odd) {
  background-color: var(--bg-section2);
}
.col .flex-text,
.col section:last-of-type {
  flex-grow: 3 !important;
}

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

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

.col-right {
  flex: 2;
  max-width: 400px;
}
.col-right img {
  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%;
}

h2 + p {
  margin: 0;
}

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

table {
  background-color: white;
  text-align: left;
}
table tr td {
  background-color: var(--bg-table1);
  padding: 0.25em;
}
table tr td:first-of-type {
  padding-right: 1em;
  width: 50%;
}
table tr:nth-of-type(even) td {
  background-color: var(--bg-table2);
}

@media screen and (min-width: 571px) {
  header img {
    margin: 15px auto 10px;
  }
}
@media screen and (max-width: 768px) {
  h1, h2, h3, h4 {
    font-size: 1.2em;
    text-align: center;
  }
}
@media screen and (max-width: 570px) {
  .wrapper {
    box-shadow: none;
    position: relative;
    height: auto;
    min-height: 100vh;
    padding-bottom: 4rem;
  }
  header {
    background: var(--bg-body);
    max-height: 45px;
    padding-bottom: 0.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  header img {
    max-height: 45px;
    width: auto;
  }
  main {
    flex-direction: column;
    padding-bottom: 2em;
    align-items: center;
  }
  footer {
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 500px) {
  body {
    font-size: 11pt;
  }
  .col {
    min-width: 100%;
  }
}

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