img{
    height: 250px;  
}
.row{
    display: flex;
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
}
.image-wrapper{
    margin: 5px;
    padding: 5px 5px 20px 5px ;
    border: 2px solid black;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.image-wrapper p{
    max-width: 250px;
    overflow: hidden;
}
.photo-headings{
    font-size: 20px;
    font-weight: bold;
    color: #ededed;
    text-shadow: 0 0 1px magenta;
    background-color: black;
    text-transform: uppercase;
    letter-spacing: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0px;
    margin: 5px 0px;
}
.row::-webkit-scrollbar {
        height: 12px;
        width: 12px;
        background: grey;
    }
    
.row::-webkit-scrollbar-thumb {
        background: rgb(0, 0, 0);
        -webkit-border-radius: 10px;
        
}