<style>
.zdjecie {
  margin: 10px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border: 1px solid #ccc;
}
.zdjecie img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.zdjecie:hover img {
  transform: scale(1.2);
}
</style>