.photo-link {
    overflow: hidden;
    cursor: pointer;
}

.photo-container {
    width: 100%;
    height: 300px;
    max-height: 600px;
    overflow: hidden;
    object-fit: cover;

}




.photo-container img {
    margin-bottom: 25px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.photo-container img:hover {
    transform: scale(1.35);
}
