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

:root {
  --bg: #0a0a0a;
  --text: #f0ede6;
  --text-muted: rgba(240, 237, 230, 0.4);
  --accent: #c8f5c8;
  --live-fill: #0f2a0f;
  --border: rgba(255, 255, 255, 0.08);
}

html,
body {
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
  overflow-x: hidden;
}

a {
  color: inherit;
}
