*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--b);
  color: var(--t);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; }
::selection { background: var(--g); color: #000; }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--b); }
::-webkit-scrollbar-thumb { background: var(--g); }
