html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  font-family: inherit;
}

#gameWrap {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Courier New", Courier, monospace;
}

#game {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background-color: #6da45b;
}

#hud {
  position: absolute;
  top: 2vw;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  font-size: clamp(16px, 3vw, 32px);
  font-weight: bold;
  color: #000;
}

#overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#overlay h1 {
  margin: 0;
  font-size: 48px;
  color: #fff;
}

#overlay p {
  margin: 5px 0;
  font-size: 20px;
}

#overlayScore {
  font-size: 24px;
  font-weight: bold;
}

button {
  padding: 15px 30px;
  font-size: 24px;
  font-family: inherit;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}
