/**
 * This file follows the CSS Guidelines established by Harry Roberts.
 * https://cssguidelin.es/ 
 *
 * The CSS reset is a mashup inspired by two different CSS resets created by
 * Josh W. Comeau and Andy Bell.
 * https://www.joshwcomeau.com/css/custom-css-reset/
 * https://andy-bell.co.uk/a-more-modern-css-reset/
 */





/*------------------------------------*\
  #CSS-RESET
\*------------------------------------*/

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

:root {
  font-size: 15px;
}

body {
  min-height: 100vh;
  text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  font-family: "Inter", sans-serif;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  object-fit: contain;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a {
  text-decoration: none;
}

p {
  line-height: 160%;
  margin-bottom: 1em;
}