body{
  background-color: black;
  }
#game{
  width: 960px;
  height: 704px;
  background-color: white;
  display: grid;
  grid-template-columns: repeat(30,1fr);
  grid-template-rows: repeat(22,1fr);
  }
.tile{
  width: 32px;
  height: 32px;
  background-color: white;
  grid-row: 11;
  grid-column: 15;
  }
.wall{
  background-color: black;
  border-radius: 5px;
  
  
  }
#player{
  width: 32px;
  height: 32px;
  background-color: yellow;
  grid-row: 9;
  grid-column: 15;
  z-index: 661;
  border-radius: 100%;
  }
.coin{
  background-image: url("Coin.png");
  }
#score_board{
  color: white;
  }
.enemy{
  width: 32px;
  height: 32px;
  background-color: red;
  grid-row: 1;
  grid-column: 1;
  z-index: 662;
  }
.Lives{
  background-image: url("Lives.png");
  background-size: cover;
  position: absolute;
  top: 706px;
  left: 890px;
  width: 128px;
  height: 128px;
  }
#game_over{
 position: absolute;
  text-align: center;
  width: 960px;
  height: 200px;
  top: 200px;
  left: 0;
  font-size: 64px;
  color: darkred;
  visibility: hidden;
  }
.power{
  background-image: url("Power.gif");
  background-size: cover;
  }
.cherry{
  background-image: url("Cherry.gif");
  background-size: cover;
  }