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

html { scroll-behavior: auto; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

::selection { background: var(--dark); color: var(--white); }

body.menu-open { overflow: hidden; }
