@font-face {
  font-family: 'TOMfont';
  src: url('./assets/fonts/TOMfont-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'TOMfont';
  src: url('./assets/fonts/TOMfont-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #1e130c;
  font-family: 'TOMfont', 'Segoe UI', sans-serif;
}

#game-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e130c;
}

#game-canvas {
  background-color: #c99f84;
  display: block;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 2530 / 1170;
  object-fit: contain;
  cursor: pointer;
  touch-action: none;
}
