@font-face {
  font-family: 'Quicksand';
  src: url('/fonts/quicksand-v37-latin-300.woff2') format('woff2'),
       url('/fonts/quicksand-v37-latin-300.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Quicksand';
  src: url('/fonts/quicksand-v37-latin-regular.woff2') format('woff2'),
       url('/fonts/quicksand-v37-latin-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Quicksand';
  src: url('/fonts/quicksand-v37-latin-500.woff2') format('woff2'),
       url('/fonts/quicksand-v37-latin-500.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #0c0e0f;
  --color-secondary: #0c0e0f;
  --color-muted: #0c0e0f;
  --color-background: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  color: var(--color-secondary);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

a:hover,
a:focus-visible {
  text-decoration-thickness: 2px;
}