/* Apply the grayscale filter to all images by default */
img {
    filter: grayscale(100%);
    transition: filter 0.5s ease-in-out; /* Smooth 0.5-second transition */
}

/* Remove the filter on hover to reveal the color */
img:hover {
    filter: grayscale(0%);
}