2D Transform: Solution

Here is the code:

#whale{ transition: transform 0.7s; } #whale:hover { transform: rotate(45deg); }

Transform Scale

Here is the code:

#rabbit{ transition: transform 0.7s; } #rabbit:hover { transform: scale(2); }

Translate

Here is the code:

#camel{ transition: transform 0.7s; } .move-right { transform: translateX(500px); }