.photo {
    width: 220px;
    margin: 25px 0;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
	color: inherit;
    transition: 0.3s all ease-in-out;
    will-change: transform;
    align-items: flex-start;
  }
  
  .photo img {
    flex-basis: 100%;
    width: 200px;
  }
  
  .photo:hover {
	position: absolute;
	z-index: 1;
    transform: scale(2.5);
  }