/*import inter files from kirby/assets/fonts/inter/*/
@import 'normalize.css';

@font-face {
  font-family: 'Inter';
  src: url('/kirby/assets/fonts/inter/Inter.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  --side_gap: 2vw;
  --bottom_gap: min(1rem, 1vw);
  --masonry_gap: max(1rem, 2vw);
  --heading_gap: max(1rem, 1vw);

  --h1_font_size: max(6vw, 6rem);
  --h2_font_size: max(2.5vw, 1.5rem);
  --h3_font_size: max(2vw, 1.25rem);
  --h4_font_size: max(1.5vw, 1rem);

  --p_font_size: max(1rem, 1vw);

  --font_weight_light: 300;
  --font_weight_regular: 400;
  --font_weight_bold: 800;

  --main_color: #171717;
  --secondary_color: #f5f5f5;
  --tableHead_color: #adadad;
  --grey_color: #9d9d9d;
  --accent_color: #14a7be;

  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
  margin: 0%;
  padding: 0;
  text-decoration: none;
}

::selection {
  background: var(--main_color);
  color: var(--secondary_color);
}

body.mobile * {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  visibility: hidden;
  padding-left: var(--side_gap);
  padding-right: var(--side_gap);
  min-height: calc(100vh - var(--bottom_gap));
  display: flex;
  flex-direction: column;
  background: var(--secondary_color);
}

main {
  flex: 1;
}

body.has-loaded {
  visibility: visible;
}

a {
  color: var(--main_color);
  text-decoration: none;
  font-size: var(--p_font_size);
  font-style: italic;
}

a:hover {
  color: var(--grey_color);
}

p {
  font-size: var(--p_font_size);
  line-height: 1.2;
  color: var(--main_color);
  margin-top: 0;
  font-weight: var(--font_weight_regular);
}

strong {
  font-weight: var(--font_weight_bold);
}
em {
  font-weight: var(--font_weight_light);
  color: var(--grey_color);
  font-size: calc(var(--p_font_size) * 0.75);
  line-height: 1;
}

h1 {
  font-size: var(--h1_font_size);
  color: var(--main_color);
  font-weight: var(--font_weight_bold);
}

h2 {
  font-size: var(--h2_font_size);
  color: var(--main_color);
}
h3 {
  font-size: var(--h3_font_size);
  color: var(--main_color);
  font-weight: var(--font_weight_regular);
}
h4 {
  font-size: var(--h4_font_size);
  color: var(--main_color);
  font-weight: var(--font_weight_regular);
}

/* header Styles */
.header-wrapper {
  display: flex;
  columns: 2;
  width: 100%;
  margin-bottom: var(--heading_gap);
}

.header-wrapper .info-link {
  text-align: right;
  margin: 0;
  margin-left: auto;
  text-decoration: none;
  color: inherit;
  font-weight: bold;
}

.intro {
  margin-bottom: var(--heading_gap);
}
