/**
 * Oat CSS (v0.3.0 lightweight semantic core)
 */
:root {
  --oat-font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --oat-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --oat-radius: 6px;
  --oat-transition: 150ms ease-in-out;
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--oat-font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}
