img{
   filter:grayscale(1) contrast(3);
   transition: filter 0.5s;
   cursor: pointer;
}

img:hover{
    filter:grayscale(0) contrast(1);
}