1. img{ designates the html element to apply the style to
2. Transform:rotate(360deg); This will rotate the image of the lion. The transform property applies a 2D or 3D transformation to an element. This property allows you to rotate, scale, move, skew, etc., elements.
3. Transition:3s; Will set the amount of time it will take for the image to rotate 360 deg. The transition property is a shorthand property for the four transition properties: transition-property, transition-duration, transition-timing-function, and transition-delay.
4. } ends the stylings applied to img