@charset "UTF-8";
@import url(standardize.css);
a {
  color: red;
  text-decoration: none;
  cursor: pointer;
  font-family: "Roboto", sans-serif; }
  a:hover {
    color: #001ea0; }
  a:active {
    color: white; }
  a.active {
    color: #001ea0; }

body {
  font-family: "Roboto", sans-serif;
  background-color: white;
  min-height: 100vh; }
  body p {
    font-size: 1.1rem;
    line-height: 1.35;
    color: #001ea0;
    text-indent: 2em;
    font-weight: 500;
    font-family: "Roboto", sans-serif; }
    body p.news {
      font-style: italic; }
  body h1 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #001ea0; }
  body h2 {
    font-size: 0.9rem;
    font-weight: 400;
    color: #001ea0; }
  body h3 {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.04rem;
    font-family: "Roboto Condensed", sans-serif;
    color: #001ea0; }

.nav {
  position: fixed;
  z-index: 999;
  text-decoration: none;
  left: 2.75em;
  top: 2.75em;
  z-index: 400;
  letter-spacing: 0.05rem; }
  .nav li {
    font-size: 1rem;
    font-weight: 400;
    padding: 0.6rem 0;
    border-bottom: 1px solid red; }
    .nav li h1 {
      line-height: 1.1;
      margin-bottom: 0.5rem; }
    .nav li h2 {
      margin-bottom: 0.5rem; }

.next-button {
  width: 100%; }
  .next-button .arrow {
    width: 60px;
    height: 40px;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: 5px; }
    .next-button .arrow path {
      stroke: rgba(255, 0, 0, 0.7);
      fill: transparent;
      stroke-width: 2px; }
      .next-button .arrow path:hover {
        stroke: red; }

#home {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-content: center;
  height: -webkit-calc(100vh - 40px);
  height: -moz-calc(100vh - 40px);
  height: calc(100vh - 40px);
  margin: 20px 0;
  background-color: #eaecf5; }
  #home img {
    height: 80vh;
    width: 80vh;
    -webkit-border-radius: 900px;
    -moz-border-radius: 900px;
    -ms-border-radius: 900px;
    border-radius: 900px;
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    bottom: 5%;
    margin: auto; }
  #home .caption {
    position: absolute;
    font-style: italic;
    color: #001ea0;
    opacity: 0.2;
    font-size: 0.9rem;
    top: 2.3em;
    right: 2.75em;
    text-align: right; }
  #home .caption a {
    color: #001ea0; }

#intro {
  background-color: rgba(255, 230, 50, 0.9); }
  #intro .intro-items li {
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: #001ea0;
    padding-bottom: 2rem; }

main section {
  position: relative;
  z-index: 150;
  padding: 35px 0 35px 0;
  background-color: #f3f3f5;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: -webkit-calc(100vh - 40px);
  min-height: -moz-calc(100vh - 40px);
  min-height: calc(100vh - 40px);
  margin: 20px 0; }
  main section article {
    width: 50vw; }
    main section article p:first-of-type {
      text-indent: 0px; }
    main section article h3 {
      text-align: center;
      margin-bottom: 2rem; }
    main section article .section-image {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%; }
      main section article .section-image img {
        width: 30vh;
        margin-top: 1.5vh;
        margin-bottom: 1vh;
        -webkit-border-radius: 600px;
        -moz-border-radius: 600px;
        -ms-border-radius: 600px;
        border-radius: 600px; }

footer ul {
  position: relative;
  background-color: #001ea0;
  opacity: 0.9;
  z-index: 500;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 2.75em; }
  footer ul li {
    width: 33%;
    color: white; }
    footer ul li a {
      color: red; }
      footer ul li a:hover, footer ul li a:active {
        color: #eaecf5; }
  footer ul .imprint-opener.active {
    color: red; }
  footer ul .imprint-opener:after {
    content: "↓"; }
  footer ul .imprint-opener.open {
    color: red; }
    footer ul .imprint-opener.open:after {
      content: "↑"; }
    footer ul .imprint-opener.open:hover {
      color: white; }
  footer ul #imprint.hidden {
    display: none;
    background-color: red; }
