
body {
  background-color: rgb(182, 224, 182);
}

#board {
  width: fit-content;
  height: fit-content;
  border: 1px solid white;
  background-color: black;
  position: relative;
}

.square {
  width: 20px;
  height: 20px;
  background-color: black;
  position: absolute;
}

.wall {
  background-color: rgb(71, 71, 194);
}
.gate {
  background-color: rgb(243, 58, 58);
}

.pellet {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: gold;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

#pacman, #redGhost {
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 1000;
}

h1 {
  color: white;
}
