css

🧩 Syntax:
img {
    width: 700px;
    height: 500px;
    object-fit: cover;

    /* animation */
    transition-property: all;
    transition-duration: 1s;
    transition-delay: 1s;
}

img:hover {
    width: 800px;
    height: 600px;
    transform: rotate(360deg);
}