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

body {
  background: var(--color-surface);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4 {
  font-weight: var(--weight-light);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

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

::selection {
  background: #111111;
  color: #F8F8F6;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
}

::-webkit-scrollbar-track {
  background: transparent;
}

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

button {
  cursor: pointer;
  font-family: inherit;
}
