html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a2e; /* Dark background so the game pops */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Prevents scrollbars */
}

canvas {
  display: block;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5); /* Adds a nice shadow behind the game */
  border-radius: 8px;
}