@charset "UTF-8";
@-webkit-keyframes logoPulse {
  0% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  100% {
    -webkit-filter: brightness(2);
            filter: brightness(2);
  }
}
@keyframes logoPulse {
  0% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  100% {
    -webkit-filter: brightness(2);
            filter: brightness(2);
  }
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  background: transparent;
  color: white;
  font-family: 'Montserrat', 'Noto Serif', 'Arial';
  list-style-type: none;
  font-size: .95rem;
  font-style: normal;
  font-weight: 500;
}

body {
  background: #111;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  position: relative;
  background-attachment: fixed;
}

html {
  scroll-behavior: smooth;
  -ms-scroll-snap-type: y proximity;
      scroll-snap-type: y proximity;
  scroll-padding-top: 45px;
}

::-moz-selection {
  background: rgba(56, 56, 56, 0.6);
  text-shadow: 1.875px 1.875px 2px #111;
}

::selection {
  background: rgba(56, 56, 56, 0.6);
  text-shadow: 1.875px 1.875px 2px #111;
}

header {
  height: 45px;
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space between;
      -ms-flex-pack: space between;
          justify-content: space between;
  background: #111;
  padding: 0;
  -webkit-box-shadow: 0px 1px 3px black;
          box-shadow: 0px 1px 3px black;
}

header nav {
  height: 45px;
  padding-right: 15px;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

header .logo {
  margin: 2.5px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

header .logo a:first-child {
  width: 40px;
}

header .logo a:first-child img {
  width: 40px;
  height: 40px;
  -webkit-animation: logoPulse 1250ms ease-in-out infinite alternate;
          animation: logoPulse 1250ms ease-in-out infinite alternate;
}

header .logo a:last-child {
  -webkit-transform: translateX(-1px);
          transform: translateX(-1px);
  font-weight: 900;
  font-style: normal;
  font-size: 18px;
  line-height: 15px;
  width: 40px;
}

header ul {
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header ul a {
  font-family: 'Noto Serif', 'Times New Roman';
  font-style: italic;
  font-size: 1.05em;
  font-weight: 500;
  text-shadow: none;
  -webkit-transition: color 0.25s ease-out;
  transition: color 0.25s ease-out;
  -webkit-transition: all ease-in-out .4s;
  transition: all ease-in-out .4s;
  position: relative;
}

header ul a.active {
  color: crimson;
}

header ul a::after {
  -webkit-transition: all ease-out .15s;
  transition: all ease-out .15s;
  content: '';
  position: absolute;
  background: crimson;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
}

header ul a:hover::after {
  width: 100%;
}

header ul a.active {
  font-weight: 900;
}

aside.download {
  position: fixed;
  z-index: 996;
  top: 50vh;
  right: 0;
  -webkit-transform: rotate(-90deg) scale(0.95);
          transform: rotate(-90deg) scale(0.95);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 17.5px;
  border-radius: 8px 8px 0 0;
  -webkit-box-shadow: -2px -1px 3.5px rgba(0, 0, 0, 0.66);
          box-shadow: -2px -1px 3.5px rgba(0, 0, 0, 0.66);
}

aside.download a {
  -webkit-transition: padding ease-in-out .33s;
  transition: padding ease-in-out .33s;
}

aside.download a:last-child {
  font-variant: small-caps;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  margin-left: 7.5px;
}

aside.download img {
  -webkit-transform: rotate(90deg) translateX(2px);
          transform: rotate(90deg) translateX(2px);
  width: 18px;
  height: 18px;
}

aside.download:hover a {
  padding-bottom: 15px;
}

.page-transition {
  position: fixed;
  z-index: 998;
  width: 50%;
  height: calc(100vh - 45px);
  top: 45px;
  -webkit-transition: all 0.95s cubic-bezier(0.56, 0.36, 0.37, 1.26);
  transition: all 0.95s cubic-bezier(0.56, 0.36, 0.37, 1.26);
}

@-webkit-keyframes closePageL {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}

@keyframes closePageL {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes closePageR {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}

@keyframes closePageR {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}

.page-transition.left {
  left: 0;
}

.page-transition.left.loaded {
  left: -100%;
}

.page-transition.right {
  right: 0;
}

.page-transition.right.loaded {
  right: -100%;
}

.page-transition .anim-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

@-webkit-keyframes load {
  0% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
            box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  5%,
  95% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
            box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
            box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
            box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
            box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
            box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
            box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  5%,
  95% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
            box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
            box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
            box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
            box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    -webkit-box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
            box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.page-transition .anim-container .loader {
  color: #43a4f3;
  font-size: 90px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: opacity .4s ease-in-out;
  transition: opacity .4s ease-in-out;
  margin: 72px auto;
  position: absolute;
  top: calc(50% - 117px);
  left: calc(100% - 45px);
  -webkit-animation: load 2s infinite ease;
          animation: load 2s infinite ease;
}

.page-transition.right .loader {
  left: -45px;
}

.page-transition.loaded .loader {
  opacity: 0;
}

.page-transition img {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: logoPulse 1s ease-in-out infinite alternate;
          animation: logoPulse 1s ease-in-out infinite alternate;
}

.page-transition.right img {
  left: 0;
}

.page-transition.hide {
  display: none;
}

.modal {
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  z-index: 997;
  top: 45px;
  left: 0;
  width: 100%;
  height: calc(100vh - 45px - 2 * 30px);
  padding: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto;
      grid-template-columns: auto;
  -ms-grid-rows: auto (min-content)[2];
      grid-template-rows: auto repeat(2, -webkit-min-content);
      grid-template-rows: auto repeat(2, min-content);
  opacity: 0;
  -webkit-transition: opacity ease-in-out .45s;
  transition: opacity ease-in-out .45s;
}

.modal, .modal * {
  pointer-events: none;
}

.modal, .modal *:not(a) {
  cursor: crosshair;
}

.modal.show, .modal.show * {
  opacity: 1;
  pointer-events: all;
}

.modal .img-container {
  width: calc(100% - 2 * 30px);
  overflow: hidden;
}

.modal .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal h4 {
  text-align: center;
  font-family: 'Noto Serif', 'Times New Roman';
  font-weight: 900;
  font-size: 1.125rem;
  margin: 10px 0;
}

.modal a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: .65rem;
}

.modal a:before {
  content: 'Bildquelle: ';
  font-weight: 900;
  text-decoration: underline;
}

.modal img.slider {
  position: fixed;
  cursor: pointer;
  height: 75px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-filter: invert(1);
          filter: invert(1);
}

.modal img.slider:first-child {
  left: 0;
}

.modal img.slider:last-child {
  right: 30px;
}

@-webkit-keyframes bannerScale {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes bannerScale {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 40px;
  scroll-snap-align: start;
}

.banner h1 {
  font-family: 'Noto Serif', 'Times New Roman';
  font-size: 1.7rem;
  font-weight: 700;
  margin: 15px;
  text-align: center;
}

.banner p {
  max-width: 850px;
  margin-bottom: 15px;
  text-align: justify;
  text-align-last: center;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

.banner:hover p {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.banner * {
  -webkit-animation: .75s ease-in-out 0s 1 bannerScale;
          animation: .75s ease-in-out 0s 1 bannerScale;
}

.banner:not(.landing) {
  margin-top: 45px;
}

span.code {
  font-family: 'Consolas';
  font-weight: 900;
  font-style: italic;
  padding: 2.5px 6.5px 3.5px 6.5px;
  font-size: .875rem;
  background: white;
  color: crimson;
  border-radius: 5px;
  word-spacing: .5px;
}

span.code sub {
  color: crimson;
  font-weight: 900;
  font-style: italic;
}

sub {
  font-size: x-small;
  line-height: 0;
}

main .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  z-Index: 2;
  -webkit-box-shadow: 1px 1.75px 5px black, 0px -1.75px 5px black;
          box-shadow: 1px 1.75px 5px black, 0px -1.75px 5px black;
}

main .container aside.content {
  position: relative;
  -webkit-box-shadow: 1px 0px 3px black;
          box-shadow: 1px 0px 3px black;
  width: 14.5rem;
  overflow: hidden;
  -webkit-transition: all 0.33s cubic-bezier(0.56, 0.36, 0.37, 1.26);
  transition: all 0.33s cubic-bezier(0.56, 0.36, 0.37, 1.26);
}

main .container aside.content .table-of-contents {
  position: absolute;
  top: 0;
  font-size: 1em;
  padding: 25px;
  padding-bottom: 50px;
}

main .container aside.content .table-of-contents.smooth-top {
  -webkit-transition: top .15s ease-in-out;
  transition: top .15s ease-in-out;
}

main .container aside.content .table-of-contents a.top {
  padding: 7.5px 12.5px;
  font-weight: 700;
  font-size: 1em;
  -webkit-transition: all ease-in-out .4s;
  transition: all ease-in-out .4s;
  position: relative;
}

main .container aside.content .table-of-contents a.top.active {
  color: #43a4f3;
}

main .container aside.content .table-of-contents a.top::after {
  -webkit-transition: all ease-out .15s;
  transition: all ease-out .15s;
  content: '';
  position: absolute;
  background: #43a4f3;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
}

main .container aside.content .table-of-contents a.top:hover::after {
  width: 100%;
}

main .container aside.content .table-of-contents a.top {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
}

main .container aside.content .table-of-contents a.top:before {
  content: '🢙';
  margin-right: 1.5px;
}

main .container aside.content .table-of-contents a.top:hover {
  color: #43a4f3;
}

main .container aside.content .table-of-contents a.toggle {
  padding: 7.5px 12.5px;
  font-weight: 700;
  font-size: 1em;
  -webkit-transition: all ease-in-out .4s;
  transition: all ease-in-out .4s;
  position: relative;
}

main .container aside.content .table-of-contents a.toggle.active {
  color: #43a4f3;
}

main .container aside.content .table-of-contents a.toggle::after {
  -webkit-transition: all ease-out .15s;
  transition: all ease-out .15s;
  content: '';
  position: absolute;
  background: #43a4f3;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
}

main .container aside.content .table-of-contents a.toggle:hover::after {
  width: 100%;
}

main .container aside.content .table-of-contents a.toggle {
  position: absolute;
  left: 0;
  cursor: pointer;
}

main .container aside.content .table-of-contents a.toggle:hover {
  color: #43a4f3;
}

main .container aside.content .table-of-contents h4 {
  font-family: 'Noto Serif', 'Times New Roman';
  font-style: italic;
  text-decoration: underline;
  font-size: 1.6em;
  line-height: 1.6em;
  font-weight: 500;
  overflow: hidden;
  margin: .8em 0;
  height: auto;
  -webkit-transition: all 0.33s cubic-bezier(0.56, 0.36, 0.37, 1.26);
  transition: all 0.33s cubic-bezier(0.56, 0.36, 0.37, 1.26);
  text-shadow: 1.375px 1.375px 2px #111;
}

main .container aside.content .table-of-contents ul {
  position: relative;
  padding-left: 6.5px;
  width: calc(100% + 6.5px);
  left: -6.5px;
  overflow: hidden;
  height: auto;
  -webkit-transition: all 0.33s cubic-bezier(0.56, 0.36, 0.37, 1.26);
  transition: all 0.33s cubic-bezier(0.56, 0.36, 0.37, 1.26);
}

main .container aside.content .table-of-contents li {
  position: relative;
  margin: 1em 0;
  line-height: 1.15em;
}

main .container aside.content .table-of-contents li a {
  font-size: 1.085em;
  font-style: italic;
  font-weight: 500;
  text-shadow: 1.25px 1.25px 2px #111;
  -webkit-transition: all ease-in-out .4s;
  transition: all ease-in-out .4s;
  position: relative;
}

main .container aside.content .table-of-contents li a.active {
  color: crimson;
}

main .container aside.content .table-of-contents li a::after {
  -webkit-transition: all ease-out .15s;
  transition: all ease-out .15s;
  content: '';
  position: absolute;
  background: crimson;
  top: 0;
  left: -4.5px;
  width: 2px;
  height: 0;
}

main .container aside.content .table-of-contents li a:hover::after {
  height: 100%;
}

main .container aside.content.collapsed {
  width: 5.5rem;
}

main .container aside.content.collapsed .table-of-contents h4, main .container aside.content.collapsed .table-of-contents ul {
  height: 0;
  margin: 0;
}

main .container article {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: calc(100% - 90px - 5.5rem);
  -webkit-transition: all 0.33s cubic-bezier(0.56, 0.36, 0.37, 1.26);
  transition: all 0.33s cubic-bezier(0.56, 0.36, 0.37, 1.26);
}

section {
  padding: 25px 45px;
  text-align: justify;
  overflow-y: auto;
  overflow-x: hidden;
}

section * {
  color: black;
}

section *::-moz-selection {
  background: crimson;
  text-shadow: -.25px .25px 2px #999;
  color: white;
}

section *::selection {
  background: crimson;
  text-shadow: -.25px .25px 2px #999;
  color: white;
}

section h2 {
  text-shadow: -.5px 1.25px 2px #999;
  text-align: left;
  font-size: 1.8em;
  font-weight: 900;
  margin: .4em 25px;
}

section h3 {
  font-size: 1.125em;
  margin: 1.4em 0 5px 0;
  font-weight: 900;
}

section h3:before {
  content: '➤ ';
}

section p {
  max-width: 800px;
  font-size: 0.9375rem;
  margin-bottom: 0.9375rem;
  line-height: 1.375rem;
}

section > p:first-of-type:first-letter {
  color: crimson;
  font-family: 'Noto Serif';
  margin-right: 1px;
  font-weight: 900;
  font-size: 2.65rem;
  line-height: 2.625rem;
  float: left;
}

section a {
  text-decoration: underline;
  color: #43a4f3;
}

section:nth-child(even) {
  background: #FEFEFE;
}

section:nth-child(odd) {
  background: #EFF0F4;
}

section #weiterlesen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: url("../assets/images/circuit.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: darken;
  -webkit-filter: saturate(120%);
          filter: saturate(120%);
  background-position: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

section #weiterlesen:hover {
  background-color: rgba(0, 0, 0, 0.75);
}

section #weiterlesen a {
  margin: 10px;
  color: white;
  padding: 10px 40px;
  font-weight: 600;
  -webkit-box-shadow: 1px 1px 2px black;
          box-shadow: 1px 1px 2px black;
  border: 2px solid white;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.33);
  -webkit-transition: background 0.25s ease-out;
  transition: background 0.25s ease-out;
}

section #weiterlesen a:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
}

section figure {
  float: right;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
  -webkit-transition: width ease-in .1s;
  transition: width ease-in .1s;
  margin: 20px 0 20px 20px;
  position: relative;
}

section figure .img-container {
  width: inherit;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
}

section figure .img-container img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform ease-out .35s;
  transition: -webkit-transform ease-out .35s;
  transition: transform ease-out .35s;
  transition: transform ease-out .35s, -webkit-transform ease-out .35s;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

section figure:hover {
  cursor: pointer;
}

section figure:hover .img-container img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

section figure figcaption {
  font-family: 'Noto Serif', 'Times New Roman';
  font-size: .85rem;
  line-height: 1rem;
  text-align: center;
  text-align-last: center;
  padding: .5rem .75rem 0 .75rem;
}

footer {
  scroll-snap-align: start;
  background: #0a0a0a;
  padding: 45px 30px;
  display: -ms-grid;
  display: grid;
      grid-template-areas: 'logo logo' 'share nav' 'github nav';
  -ms-grid-columns: 1fr 5fr;
      grid-template-columns: 1fr 5fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
}

footer > * {
  margin: 15px 25px;
}

footer .logo {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: logo;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
}

footer .logo a:first-child {
  width: 40px;
}

footer .logo a:first-child img {
  width: 40px;
  height: 40px;
  -webkit-animation: logoPulse 1250ms ease-in-out infinite alternate;
          animation: logoPulse 1250ms ease-in-out infinite alternate;
}

footer .logo a:last-child {
  -webkit-transform: translateX(-1px);
          transform: translateX(-1px);
  font-weight: 900;
  font-style: normal;
  font-size: 18px;
  line-height: 15px;
  width: 40px;
}

footer .share {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: share;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: rows;
          flex-direction: rows;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

footer .github {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: github;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  -webkit-transition: all ease-in-out .4s;
  transition: all ease-in-out .4s;
  position: relative;
}

footer .github.active {
  color: crimson;
}

footer .github::after {
  -webkit-transition: all ease-out .15s;
  transition: all ease-out .15s;
  content: '';
  position: absolute;
  background: crimson;
  top: 0;
  left: -4.5px;
  width: 2px;
  height: 0;
}

footer .github:hover::after {
  height: 100%;
}

footer .github h4 {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  font-family: 'Noto Serif', 'Times New Roman';
  color: white;
  font-style: italic;
  font-size: 14px;
}

footer .github img {
  width: 40px;
  height: 40px;
  margin: 5px 15px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all ease-in-out .33s;
  transition: all ease-in-out .33s;
}

footer .github:hover img {
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
}

footer nav {
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  grid-area: nav;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: 0;
}

footer nav .column {
  min-width: 200px;
  margin: 30px;
  margin-top: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

footer nav .column h3 {
  margin-bottom: 10px;
}

footer nav .column h3 a {
  font-family: 'Noto Serif', 'Times New Roman';
  font-weight: 700;
  color: crimson;
  font-size: 18px;
  -webkit-transition: all ease-in-out .4s;
  transition: all ease-in-out .4s;
  position: relative;
}

footer nav .column h3 a.active {
  color: crimson;
}

footer nav .column h3 a::after {
  -webkit-transition: all ease-out .15s;
  transition: all ease-out .15s;
  content: '';
  position: absolute;
  background: crimson;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
}

footer nav .column h3 a:hover::after {
  width: 100%;
}

footer nav .column ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer nav .column ul li {
  margin: 3px 0;
}

footer nav .column ul li a {
  -webkit-transition: all ease-in-out .4s;
  transition: all ease-in-out .4s;
  position: relative;
}

footer nav .column ul li a.active {
  color: crimson;
}

footer nav .column ul li a::after {
  -webkit-transition: all ease-out .15s;
  transition: all ease-out .15s;
  content: '';
  position: absolute;
  background: crimson;
  top: 0;
  left: -4.5px;
  width: 2px;
  height: 0;
}

footer nav .column ul li a:hover::after {
  height: 100%;
}

img {
  visibility: hidden;
}

img[src] {
  visibility: visible;
}

@media screen and (min-width: 1500px) {
  main .container aside.content {
    width: 20em;
  }
}

@media screen and (max-width: 992px) {
  header ul a {
    font-size: 1.05em;
  }
  main .container aside.content {
    position: relative;
    z-index: 5;
    height: auto;
    background: #111;
  }
  main .container article {
    position: relative;
    z-index: 4;
  }
  main .container article section .info-box .content {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    -ms-grid-rows: auto auto auto;
        grid-template-rows: auto auto auto;
        grid-template-areas: 'h4' 'list' 'fig';
  }
  main .container article section .info-box .gallery {
    -ms-grid-rows: (1fr)[auto-fit];
        grid-template-rows: repeat(auto-fit, 1fr);
    -ms-grid-columns: auto;
        grid-template-columns: auto;
        grid-template-areas: 'h5' 'f1' 'f2' 'f3' 'f4' 'f5' 'f6';
  }
}

@media screen and (max-width: 875px) {
  html {
    font-size: .875rem;
  }
  header nav {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
}

@media screen and (max-width: 700px) {
  .info-box {
    display: none;
  }
  header ul a {
    font-size: .75rem;
  }
  header nav {
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
  }
}

@media screen and (max-width: 500px) {
  html {
    font-size: .7rem;
  }
  header .logo a:last-child {
    display: none;
  }
  header nav {
    -webkit-box-flex: 10;
        -ms-flex: 10;
            flex: 10;
  }
  main .container aside.content {
    display: none;
  }
}
/*# sourceMappingURL=main.css.map */