/* Reset base. As fontes (Fraunces, Inter, IBM Plex Mono) e as variáveis de cor
   (--paper, --ink, --amber, --teal, etc.) já são carregadas e definidas
   dinamicamente pelo próprio componente em app.jsx. */

* {
  box-sizing: border-box;
}

html, body, #root {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

body {
  font-family: Inter, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
