@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: bold;
}
a {
  color: inherit;
}
a:hover {
  color: var(--highlight);
}

.nowrap {
  white-space: nowrap;
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
ul,
ol,
hr,
figure:not(.float) {
  clear: both;
}

blockquote {
  margin: 2rem 0;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-left: 3px solid var(--highlight);
  font-size: 1.2em;
  line-height: 1.5;
}
blockquote p {
  margin-bottom: 0.75rem;
}
blockquote p:last-child {
  margin-bottom: 0;
  font-size: 0.75em;
  opacity: 0.8;
}
@media (max-width: 700px) {
  blockquote {
    padding-left: 1rem;
    font-size: 1.1em;
  }
}

figure {
  margin: 1rem 0;
}
figure img {
  max-width: 100%;
  display: block;
}
figure.float {
  margin: 0;
}
@media (max-width: 700px) {
  figure.float {
    margin: 1rem 0;
  }
  figure.float img {
    width: 100%;
  }
}
figure.float.right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 700px) {
  figure.float.right {
    float: none;
    margin-left: 0;
  }
}
figure.float.left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 700px) {
  figure.float.left {
    float: none;
    margin-right: 0;
  }
}
figure figcaption {
  margin-top: 0.5rem;
  text-align: center;
}
@media (max-width: 700px) {
  figure figcaption {
    text-align: left;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: bold;
  margin: 1rem 0;
  margin-top: 2rem;
  color: var(--highlight);
}
@media (max-width: 700px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 1rem 0;
  }
}

h1 {
  font-size: 1.6rem;
}

h2 {
  font-size: 1.45rem;
}

h3 {
  font-size: 1.3rem;
}

h4,
h5,
h6 {
  font-size: 1rem;
}

p {
  margin: 1rem 0;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

ul,
ol {
  margin: 1rem 0;
  padding-left: 1rem;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

hr {
  margin: 2rem 0;
  height: 1px;
  border: none;
  background-color: currentColor;
  opacity: 0.25;
}

.accordion {
  margin-top: 2rem;
}
.accordion .panel {
  position: relative;
  margin-bottom: 15px;
}
.accordion .panel:last-child {
  margin-bottom: 0;
}
.accordion .panel .headline {
  display: block;
  position: relative;
  margin-bottom: 10px;
  color: var(--text);
  border-bottom: 2px solid;
}
@media (max-width: 900px) {
  .accordion .panel .headline {
    border-width: 1px;
  }
}
.accordion .panel .headline:after {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  content: "↓";
}
.accordion .panel .headline:hover {
  color: var(--highlight);
  border-color: var(--highlight);
}
.accordion .panel .headline a {
  display: block;
  color: inherit;
  text-decoration: none;
  padding-right: 30px;
}
.accordion .panel .headline .panel_close {
  display: none;
}
.accordion .panel .panel_inner {
  display: none;
  overflow: hidden;
}
.accordion .panel .panel_inner .images {
  margin-left: 2rem;
  float: right;
  max-width: 200px;
}
.accordion .panel .panel_inner .images img {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}
.accordion .panel .panel_inner .images img:last-child {
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .accordion .panel .panel_inner .images {
    float: none;
    margin-left: 0;
    margin-bottom: 1rem;
  }
}
.accordion .panel .panel_inner .panel_content > *:first-child {
  margin-top: 0;
}
.accordion .panel .panel_inner .panel_content > *:last-child {
  margin-bottom: 0;
}
.accordion .panel:target .headline {
  color: var(--highlight);
}
.accordion .panel:target .headline:after {
  transform: scaleY(-1);
}
.accordion .panel:target .headline .panel_open {
  display: none;
}
.accordion .panel:target .headline .panel_close {
  display: flex;
}
.accordion .panel:target .panel_inner {
  display: block;
}

:root {
  --text: rgba(0, 0, 0, 0.5);
  --background: white;
  --highlight: black;
  --main_background: white;
  --footer_text: white;
  --footer_background: rgba(0, 0, 0, 0.5);
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (max-width: 900px) {
  html {
    font-size: 15px;
  }
}

body {
  font-family: "Inter", sans-serif;
  margin: 0 auto;
  max-width: 1200px;
  min-height: 100vh;
  padding: 2rem;
  box-sizing: border-box;
  background-color: var(--background);
  color: var(--text);
}
@media (max-width: 700px) {
  body {
    padding: 1rem;
  }
}

.container {
  display: flex;
}
@media (max-width: 700px) {
  .container {
    flex-direction: column;
  }
}

header {
  margin-right: 4rem;
  width: auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 700px) {
  header {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.logo {
  display: block;
  text-decoration: none;
  color: var(--highlight);
  margin-bottom: 2rem;
}
.logo h1 {
  margin: 0;
  max-width: 250px;
}
.logo img,
.logo svg {
  display: block;
  max-width: 15rem;
}
@media (max-width: 700px) {
  .logo img,
  .logo svg {
    max-width: 10rem;
  }
}

.logo_spacer {
  margin-bottom: 2rem;
}

.menu_toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 35px;
  z-index: 20;
}
.menu_toggle a {
  display: flex;
  text-decoration: none;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
}
.menu_toggle a svg rect {
  fill: currentColor;
}
.menu_toggle a.toggle_off {
  visibility: hidden;
  position: absolute;
  top: 0;
}
.menu_toggle:target a.toggle_on {
  visibility: hidden;
}
.menu_toggle:target a.toggle_off {
  visibility: visible;
}
@media (max-width: 700px) {
  .menu_toggle {
    display: block;
  }
}

.menu {
  line-height: 1.5;
  width: 100%;
  min-width: 12rem;
  max-width: 15rem;
}
@media (max-width: 700px) {
  .menu.main_menu {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    padding: 4rem 1rem 0;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
    z-index: 10;
    background-color: white;
  }
  .menu_toggle:target + .menu.main_menu {
    display: block;
  }
}
.menu a {
  display: block;
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.menu a.is_open {
  color: var(--highlight);
}

main {
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main .text > *:first-child {
  margin-top: 0;
}
main .text > *:last-child {
  margin-bottom: 0;
}
main.with_background .content {
  background-color: var(--main_background);
  padding: 1rem;
  border-radius: 3px;
}

.header img {
  display: block;
  max-width: 100%;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .header img {
    margin-bottom: 1rem;
  }
}

footer {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
}
footer.with_background {
  background-color: var(--footer_background);
  color: var(--footer_text);
  padding: 1rem;
  border-radius: 3px;
}
footer .footer_text {
  line-height: 1.5;
  text-align: right;
  width: 100%;
}
footer a:hover {
  color: inherit;
  opacity: 0.5;
}
footer .menu {
  min-width: 0;
  max-width: none;
  display: flex;
}
footer .menu a {
  margin-bottom: 0;
  margin-right: 1rem;
}
footer .menu a.is_open {
  color: inherit;
  opacity: 0.5;
}
@media (max-width: 700px) {
  footer {
    flex-direction: column;
  }
  footer .footer_text {
    margin-top: 1rem;
    text-align: left;
  }
}

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