/* Tokihana — Base normalization (opt-in).
 * Consumers can skip this file if their app already has a reset. */

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

html, body {
  margin: 0;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

a { color: inherit; }
