/* style.css — Tiny Dungeon: retro dungeon crawler styling */

@font-face {
  font-family: 'Kenney';
  src: url('https://popchat.com/assets/kenney/fonts/Kenney%20Future.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background: #0a0a12;
  font-family: 'Kenney', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color-scheme: dark;
}

html[data-theme="light"] {
  color-scheme: light;
}

#game {
  display: block;
  cursor: pointer;
  touch-action: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
