* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  height: 100%;
  background: #111820;
  color: #1d2328;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  overflow: hidden;
  cursor: default;
}

.shell {
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
}

.game-wrap {
  width: 100%;
  height: 100%;
}

canvas {
  display: block;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  border: 0;
  background: #6f9357;
  cursor: default !important;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
