* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--shadow);
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  color: var(--ink);
  font-family: var(--font-ui);
  overscroll-behavior: none;
  touch-action: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

button {
  color: inherit;
  font: inherit;
}

button:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 3px;
}

kbd {
  min-width: 30px;
  padding: 3px 6px;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 4px;
  box-shadow: 0 2px 0 var(--ink);
  font: 800 9px var(--font-ui);
  text-align: center;
}
