body {
    background-color: bisque;
}
.App {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.score{
  height: 100px;
  line-height: 100px;
  font-weight: 700;
}

.grid{
  height: calc (100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.row {
    display: flex;
}

.cell {
    width: 50px;
    height: 50px;
    border: 1px solid brown;
}

.furry{
background-image: url("/images/furry.png");
}

.coin{
  background-image: url("/images/coin.png");
}

img{
  width: 50px;
  height: 50px;
}

.game-over{
  width: 100vw;
  height: 100vh;
  background-color: rgba(230, 138, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  font-size: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  /* display: none; */
}

.button {
  width: 200px; 
  height: 30px;
  line-height: 30px;
  text-align: center;
  border : 2px solid black;
  border-radius: 5px;
  font-size: 16px;
  background-color: chocolate;
  cursor: pointer;
}
