Free to use photo site - Need feedback!

Sure! What you prefer!
For that effect you might add this code for the images thumbs in home:

.css_class {
backface-visibility: hidden;    
box-shadow: 0 0 1px rgba(0, 0, 0, 0);    /* if you want the shadow effect */
display: inline-block;    
transform: translateZ(0px);    
transition-duration: 0.2s;    
transition-property: transform;    
vertical-align: middle;
}

.css_class:hover {
transform: scale(1.85);
}