/* Metrics-matched stand-in shown while Inter downloads, so the
   swap to Inter doesn't reflow the page (CLS) */
@font-face {
  font-family: "Inter Fallback";
  src: local("Arial"), local("Roboto"), local("Helvetica Neue"), local("Helvetica");
  size-adjust: 107.4%;
  ascent-override: 90.2%;
  descent-override: 22.48%;
  line-gap-override: 0%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--color-bg);
  color: var(--color-white);

  font-family:
    Inter,
    "Inter Fallback",
    Helvetica,
    Arial,
    sans-serif;

  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
}