.move-image {
    /* Set initial position and enable smooth transitions for the 'transform' property */
    transform: translateY(0);
    transition: transform 0.3s ease; /* 0.3s duration, 'ease' timing function */
    /* Ensure the element behaves as a block for correct positioning if needed */
    display: block; 
}

.move-image:hover {
    /* Move the image 10 pixels up on the Y-axis when hovered */
    transform: translateY(-10px);
}