body {
  background-color: lightblue;
}

img {
 transition:transform 0.3s ease-in-out 0.1s;
}


img:hover {
 transform:scale(1.2);
}
