.photograph{
    display: flex;
    flex-direction: column;
    padding:1%;
    min-width: 32ch;
    width:30%;
    max-width: 32ch;
    height: fit-content;
    background-color: #F5F5F5;
    background: linear-gradient(120deg,rgba(245, 245, 245, 1) 47%, rgba(255, 255, 255, 1) 81%, rgba(245, 245, 245, 1) 100%);
    position:relative;
    border-radius: .3ch;
}
.photograph>.photograph-container>img{
    width: 100%;
}
.photograph>.photograph-container{
    display: block;
    position:relative;
    width: 100%;
}
.photograph>.photograph-container::after {
  box-shadow: inset 0ch 0ch .75ch .75ch #F5F5F5;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;

}
.photograph>h2{
    text-align: center;
    margin-top: .5lh;
    margin-bottom: .5lh;
}