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

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top, #4a2a12 0, #24160a 42%, #120904 100%);
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, #4a2a12 0, #24160a 42%, #120904 100%);
  background-color: #24160a;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, #4a2a12 0, #24160a 42%, #120904 100%);
  background-color: #24160a;
  z-index: -1;
  pointer-events: none;
}
