body {
  font-family: 'Comic Sans MS', cursive;
  margin: 0;
  color: #fff;
}

img {
  image-rendering: auto;
  image-rendering: smooth;
  image-rendering: high-quality;
  image-rendering: crisp-edges;
  -webkit-user-drag: none;
}

#gameContainer {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #1a4072;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#wateringCan {
  width: 96px;
  height: 96px;
  position: absolute;
  cursor: pointer;
  z-index: 1;
  top: 0;
  left: 0;
}

#plant {
  width: 72px;
  height: 144px;
  transition: background-color 0.5s ease;
}

.watering {
  transition: transform 1s ease-in-out;
  transform: rotate(-45deg);
}

div {
  font-size: 1.5rem;
  font-weight: bold;
}

#counter {
  font-size: 1.5rem;
  color: #fff;
  background-color: #1d45c7;
  border: 1px solid #0e2e96;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.raindrop {
  position: absolute;
  font-size: 24px;
  pointer-events: auto;
  user-select: none;
  z-index: 2;
}

#inventory {
  background-color: #444;
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid #000;
}

#items {
  display: flex;
  align-items: flex-end;
}

#canPlace {
  width: 96px;
  height: 96px;
  border-radius: 1rem;
  border: 2px solid #3a1e06;
  background-color: #723f16;
  margin-right: 1rem;
}
