html, body {
  margin: 0;
  padding: 0;
  background: #1a1210;
  overflow: hidden;
  font-family: 'VT323', monospace;
  color: #e8dcc0;
}
#game-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
canvas {
  border-radius: 4px;
  box-shadow: 0 0 40px rgba(120, 80, 40, 0.35);
}
