@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

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

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'JetBrains Mono', Consolas, monospace;
  background-color: #0a0a0f;
  color: #e8e6e3;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

#app {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  will-change: contents;
}

#app:active {
  cursor: grabbing;
}
