body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #222;
}

#gameCanvas {
  display: block;
  width: 100vw;
  height: 100vh;
}

#hud {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px black;
}

#coin-container {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between icon and text */
}

#coin-icon {
  width: 30px; /* Adjust icon size */
  height: 30px;
}
