body {
  margin: 0;
  overflow: hidden;
  background: black;
}

#hud {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  font-family: "Director";
  font-weight: bold;
}

#hud p {
  
  text-shadow: -1px 0px 0px black, 0px 1px 0px black, 0px -1px 0px black, 1px 0px 0px black;
}

#gameover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(50, 0, 0, 0.8);
  color: white;
  padding: 20px;
  z-index: 1;
  display: none;
  align-items:center;
  flex-direction: column;
}

#win {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 50, 0, 0.8);
  color: white;
  padding: 20px;
  z-index: 1;
  display: none;
  align-items:center;
  flex-direction: column;
}
