Sepia Tone to Color on Hover
HTML
<img src="https://secureservercdn.net/198.71.233.179/lh1.132.myftpupload.com/wp-content/uploads/2019/11/Farm-Stand-1.jpg"/>
CSS
body {
text-align:center;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
img {
max-width:50vw;
filter: sepia(.8);
transition: all 1s ease;
margin: 0 auto;
}
img:hover {
filter: sepia(0);
}