I'm looking for a code that shows the pet image as transparent and becomes whole when you hover over it. :)

{ opacity: 0.1; }
:hover { opacity: 1; }
The numbers for opacity are between 0 (not visible) to 1 (fully visible).
You can also add transitions to make the change smooth. ^_^