@charset "UTF-8";
/* Fonts */
@font-face {
  font-family: "Belgika";
  src: url("../fonts/Belgika-40th.woff2") format("woff2"), url("../fonts/Belgika-40th.woff") format("woff");
  font-weight: 100 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Belgika";
  src: url("../fonts/Belgika-16th.woff2") format("woff2"), url("../fonts/Belgika-16th.woff") format("woff");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Belgika";
  src: url("../fonts/Belgika-8th.woff2") format("woff2"), url("../fonts/Belgika-8th.woff") format("woff");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Belgika";
  src: url("../fonts/Belgika-5th.woff2") format("woff2"), url("../fonts/Belgika-5th.woff") format("woff");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bagnard";
  src: url("../fonts/Bagnard.woff2") format("woff2"), url("../fonts/Bagnard.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BBBBaskervvol";
  src: url("../fonts/BBBBaskervvol-Regular.woff2") format("woff2"), url("../fonts/BBBBaskervvol-Regular.woff") format("woff");
  font-weight: 100 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BBBBaskervvol";
  src: url("../fonts/BBBBaskervvol-Italic.woff2") format("woff2"), url("../fonts/BBBBaskervvol-Italic.woff") format("woff");
  font-weight: 100 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "BBBBaskervvol";
  src: url("../fonts/BBBBaskervvol-Book.woff2") format("woff2"), url("../fonts/BBBBaskervvol-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BBBBaskervvol";
  src: url("../fonts/BBBBaskervvol-BookItalic.woff2") format("woff2"), url("../fonts/BBBBaskervvol-BookItalic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "BBBBaskervvol";
  src: url("../fonts/BBBBaskervvol-Medium.woff2") format("woff2"), url("../fonts/BBBBaskervvol-Medium.woff") format("woff");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BBBBaskervvol";
  src: url("../fonts/BBBBaskervvol-MediumItalic.woff2") format("woff2"), url("../fonts/BBBBaskervvol-MediumItalic.woff") format("woff");
  font-weight: 500 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "BBBBaskervvol";
  src: url("../fonts/BBBBaskervvol-Bold.woff2") format("woff2"), url("../fonts/BBBBaskervvol-Bold.woff") format("woff");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BBBBaskervvol";
  src: url("../fonts/BBBBaskervvol-BoldItalic.woff2") format("woff2"), url("../fonts/BBBBaskervvol-BoldItalic.woff") format("woff");
  font-weight: 700 900;
  font-style: italic;
  font-display: swap;
}
/* Core Stuff */
* {
  box-sizing: border-box;
}

html {
  font-size: clamp(100%, 1.25vw, 175%);
  font-family: "Bagnard", "BBBBaskervvol", serif;
  font-weight: 300;
}

body {
  font-size: 1rem;
  line-height: 1.5;
  color: black;
  max-width: 60rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: dimgrey;
}

h1,
h2 {
  font-family: "Belgika", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 1.25rem;
  margin: 0.25rem 0;
}

h2 {
  font-size: 1.1rem;
}

p {
  margin: 1rem 0;
}

a {
  color: #323232;
}

a:hover {
  color: #323232;
}

pre {
  background: #F0F0F0;
  margin: 1rem 0;
  border-radius: 2px;
}

blockquote {
  border-left: 10px solid #eee;
  margin: 0;
  padding: 0 2rem;
}

/* Utility Classes */
.wrapper {
  margin: 0 1rem;
}

.padding {
  padding: 1rem 0.25rem;
}

.left {
  float: left;
}

.right {
  float: right;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/* Content Styling */
.header {
  background-color: white;
  font-family: "Belgika", sans-serif;
  font-weight: 400;
}
.header .wrapper {
  display: flex;
  flex-direction: column;
}
.header .wrapper .logo {
  font-size: 1.5rem;
  text-decoration: none;
  color: black;
}

.navigation {
  position: sticky;
  top: 0;
  background: white;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  font-family: "Belgika", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}
.navigation a {
  text-decoration: none;
  color: black;
}
.navigation li {
  margin: 0.25rem 0;
}

.main {
  scroll-behavior: smooth;
  margin-bottom: 50vh;
}
.main .section-anchor {
  transform: translateY(-4rem);
}
.main .section-wrapper {
  max-width: 30rem;
}
.main .section-wrapper .section-title {
  font-family: "Belgika", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
}
.main .section-wrapper.no-title .section-title {
  display: none;
}
.main .section-wrapper.toggle .section-title {
  cursor: pointer;
}
.main .section-wrapper.toggle .section-content {
  overflow: hidden;
  height: auto;
  max-height: 600rem;
  transition: max-height 4s;
}
.main .section-wrapper.toggle .section-content.closed {
  max-height: 0;
  transition: max-height 0.2s;
}
.main .section-wrapper .section-img {
  max-width: 100%;
}
.main .section-wrapper .section-img img {
  width: 100%;
  max-width: 30rem;
  margin: 1rem 0;
}
.main .section-wrapper .section-text {
  padding-bottom: 2rem;
}
.main .section-wrapper .section-text ul {
  list-style: none;
  padding-left: 0;
}
.main .section-wrapper .section-text ul li:before {
  content: "— ";
}/*# sourceMappingURL=custom.css.map */