:root {
  color-scheme: light;
  --paper: #e7d0bf;
  --ink: #443b33;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 34%),
    linear-gradient(245deg, rgba(46, 132, 151, 0.13), rgba(46, 132, 151, 0) 38%),
    var(--paper);
}

body {
  min-width: 320px;
  min-height: 320px;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

#atomCanvas {
  display: block;
  width: 100vw;
  height: 100vh;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#atomCanvas:active {
  cursor: grabbing;
}
