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

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  height: 100vh;
  @font-face {
      font-family: 'Inter var';
      src: url('/fonts/Inter-roman.var.woff2') format('woff2');
  }

  font-family: 'Inter var', ui-sans-serif, system-ui, sans-serif, -apple-system, Helvetica Neue;
  font-size: 16px;
}

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

ol,
ul {
  list-style: none outside none;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

a,
button {
  all: unset;
  cursor: pointer;
}