html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  /* background: linear-gradient(to bottom, #172721, #003521); */
  background: red;
  position: relative;
}

/* Add a dark overlay to dim the background */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2); /* Dark overlay */
  pointer-events: none; /* Allow clicks to pass through */
  z-index: -1; /* Behind the game canvas */
}

@keyframes backgroundScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 256px 0px;
  }
}
