/* ensures images maintain consistent sizes in the case that images have different aspect ratios originally */
/* makes sure column width is fit while essentially cropping each image to fit a certain height */
.consistent-img {
    width: 100%;     
    height: 250px;     
    object-fit: cover; 
}