html, body, ul, li {
  margin: 0;
  border: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
}

body {
  position: relative;
}

canvas {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background-color: transparent;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

p {
  text-align: center;
  margin: 0;
}

#gameContainer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #5c94fc;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (max-width: 768px) {
  #gameContainer {
    align-items: center;
  }
}

.info {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
}

/* Prevent pull-to-refresh on mobile */
body {
  overscroll-behavior-y: contain;
  touch-action: pan-x pan-y;
}
