#photo-page-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    gap: 1.5rem;
}

.single-photo-container{
    background-color: lightgray;
    padding: 0.5rem;

    box-shadow: 0.5rem 0.5rem 0.5rem;
}

.single-photo-container img{
    width: auto;
    height: 100%;
    transition: 1s;
}

.single-photo-container img:hover{
    transform: scale(1.3);
}

.photo-description{
    text-align: center;
    width: 26.6rem;
    color: rgb(74, 74, 74);
}

.img-holder{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 26.6rem;
    height: 15rem;
}

@media (max-width: 600px){
    .single-photo-container{
        width: 90%;
    }

    .img-holder{
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        height: auto;
    }

    .single-photo-container img{
        width: 80%;
        height: auto;
        transition: 1s;
    }

    .photo-description{
        text-align: left;
        color: rgb(74, 74, 74);
        width: 100%;
    }
}
