#photo-pack-container {
    display: flex;
    flex-wrap: wrap;

}

.photo-pack {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 190px;
    height: 254px;
    background: rgb(24, 24, 24);
    border: 0;
    border-radius: 10px;
    margin: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.photo-pack:hover {
    transform: rotateY(10deg) rotateX(-20deg) rotateZ(0);
    
    /* scale: 1.1; */
}

.photo-pack * {
    margin: 0;
    padding: 0;
    text-align: center;
    color: var(--main-button-color);
}

.photo-pack h1 {
    color: white;
    font-size: 2em;
    font-weight: 400;
    margin: 0 0 0.5em 0;
    padding: 0;
}
   
.shadow {
    box-shadow: inset 0 -3em 3em rgba(0,0,0,0.1),
                0 0  0 2px rgb(88, 88, 88),
                0.3em 0.3em 1em rgba(0,0,0,0.3);
}

.photo-body {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    max-width: 80vw;
    max-height: fit-content;
    background: rgb(24, 24, 24);
    border: 0;
    border-radius: 10px;
    margin: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.photo-body img {
    object-fit: scale-down;

    max-height: 400px;
    max-width: 100%;
    height: auto;
    width: auto;
    border-radius: 5%;

}

.photo-body h1 {
    color: white;
    font-size: 2em;
    font-weight: 400;
    margin: 10px;
    padding: 0;
}

.photo-container {
    width: fit-content;
    height: fit-content;
    max-height: 400px;
    max-width: 400px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}
   
.photo-set {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    background: rgb(24, 24, 24);
    margin: 20px;
    max-height: 80%;
    height: auto;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}

@media screen and (max-width: 600px) {
    #photo-pack-container {
        justify-content: center;
    }
}
    