.containerZ {
  width: 800px;
  height: 500px;
  overflow: hidden;
}

.containerZ img {
  width: 100%;
  height: 100%;
  transition: all 3s ease-in-out;
}

.containerZ:hover img {
      transform: scale(3,3)
}

