/* Add CSS styling here */

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  gap: 10px;
  margin: 0;
  background-color: #b2eaf9;
}

#game-container {
  background-color: #b2eaf9;
  position: relative;
  width: 100vw;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.ground {
  position: absolute;
  bottom: 0;
  z-index: 3;
  width: 100vw;
  height: 20px;
}

.bin {
  z-index: 5;
  position: absolute;
  bottom: 20px;
  width: 150px;
  /* height: 180px; */
  /* width: auto; */
  /* height: 90px; */
  height: 30%;
  text-align: center;
  line-height: 50px;
}

#residue-bin {
  left: 150px;
}

#organic-bin {
  left: 20px;
}

#inorganic-bin {
  right: 10px;
}

.trash {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

.bin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}