html, body {
  overflow: hidden;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: default;
}

button,
[data-no-advance],
a {
  cursor: pointer;
}

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