body {
  margin: 7px;
  display: flex;
  justify-content: center;
  background-color: #dde6ed;
}
.scoreBoard {
  background-color: #27374d;
  height: 90px;
  width: 500px;
  font-family: "Pangolin", cursive;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scoreBoard p {
  font-size: 30px;
  padding: 0 30px;
  margin: 0;
}
.gameBox {
  background-color: #394867;
  height: 515px;
  width: 500px;
  display: grid;
  position: relative;
  grid-template: repeat(30, 1fr) / repeat(30, 1fr);
}
.food {
  background-color: red;
}
.snake {
  background-color: greenyellow;
}
