/* Regular */
@font-face {
  font-family: "Fira";
  src: url("fonts/FiraSans.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Italic */
@font-face {
  font-family: "Fira";
  src: url("fonts/FiraItalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: "Fira";
  src: url("fonts/FiraBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Bold Italic */
@font-face {
  font-family: "Fira";
  src: url("fonts/FiraBoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Mono */
@font-face {
  font-family: "FiraMono";
  src: url("fonts/FiraMono.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
/* Mono Bold */
@font-face {
  font-family: "FiraMono";
  src: url("fonts/FiraMonoBold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
body {
  font-family: "Fira", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}
strong, b { font-weight: 700; }
em, i { font-style: italic; }
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/

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

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}
