.employee-photo-container {
    overflow: hidden; /* hides any overflow if the image is larger than the container */
}

.employee-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ensures the image covers the container */
}