.plot-div {
  width: 100px;
  height: 100px;
  background-image: url("../img/dirt.png");
  background-size: cover;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

#plotGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 2px;
  height: 0%;
  width: 0%;
  margin-top: 5%;
  margin-left: 10%;
}

#gameArea{
  display: grid;
  grid-template-columns: 1fr 5fr;
  margin-top: 10%;
  margin-left: 5%;
  margin-right: 5%;
  position: absolute;
  top: 10%; right: 0; bottom: 0; left: 0;
}

#inventoryGrid{
  margin-top: 10%;
  border: 2px dashed #3e8ca1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  justify-items: center;
  height: min-content;
  padding: 5%;
  margin-left: 5%;
}

#storeTitle{
  margin-top:10%;
  font-family: 'Kalam', cursive;
  font-size: 120%;
  color: brown;
  overflow: nowrap;
}

.inventorySlot{
display: flex;
flex-direction: column;
padding: 3%;
align-content: center;
align-items: center;
color: antiquewhite;
font-family: sans-serif;
background-color: #779482;
border-radius: 25px;
}

.inventorySlot img{
  display: block;
  align-self: center;
  background-color: antiquewhite;
  border-radius: 50px;
  padding: 10px;
  margin-top: 15%;
  box-shadow: 0px 5px 0px rgb(185, 169, 147);
}

.plot-div img{
  width: 100%;
  height: 100%;
  display: block;
}

#moneyDisplay {
  background-color: #3e8ca1;
  color: antiquewhite;
  font-family: 'Supermercado One', cursive;

  border-radius: 10px;
  padding: 2% 10%;
  width: 70%;
  height: fit-content;

  margin: 0px auto;
  text-align: center;
  font-family: sans-serif;
  font-size: larger;

  display: flex;
  justify-content: center;
  align-items: center;


}

.inventorySlot {
  width: 150px;
  height: 150px;
}


img{
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  image-rendering: crisp-edges;
}

