img {
  max-width: 100%;
  box-sizing: border-box;
}


body {
  margin: 0;
  display: flex;
  justify-content: center;  
  align-items: center;      
  gap: 80px;
  height: 100vh;
  background-image: url('images/wallpaper.png');
  background-repeat: repeat;
  background-size: auto;
  background-position: top left;
  font-family: sans-serif;
}



.zone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 250px;
  position: relative;
}


#sink img {
  width: 250px;
  height: auto;
  border: 2px dotted rgb(22, 8, 22);
  transition: filter 0.3s ease;
}

#sink.on img {
  filter: brightness(1.4) saturate(1.5);
}


.dish {
  width: 120px;
  height: auto;
  cursor: grab;
  transition: transform 0.3s;
}

.dish:active {
  transform: scale(1.05);
}


#stack {
  position: relative; 
  width: 200px;
  height: 250px;
 
}

.stacked {
  position: absolute;
  width: 100px;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
}