/* ==============================================
   galleri specifikt
   =============================================== */

.galleri {
    margin: 10px 0;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, 300px);
    grid-auto-rows: 300px;
    grid-auto-flow: dense;
    justify-content: center;
}

.max_three {
    grid-template-columns: repeat(auto-fill, 335px);
    grid-auto-rows:  335px;
}

@media screen and (max-width: 800px) {
    .galleri{
        grid-template-columns: repeat(auto-fill, 200px);
        grid-auto-rows: 200px;
    }
}


@media screen and (max-width: 500px) {
    .galleri{
        grid-template-columns: repeat(auto-fill, 150px);
        grid-auto-rows: 150px;
    }
}




/* div.gallery-item {
    padding: 25px;
} */

div.gallery-item.wide {
    grid-column: span 2;
}

div.gallery-item.tall {
    grid-row: span 2;
}

div.gallery-item img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

div.sold_out {
    /* padding: 5px; */
    border: 5px rgb(89, 89, 150) solid;
    border-radius: 15px;
}

/* div.wide img {
    width: 610px;
}

div.tall img {
    height: 610px;
} */