
/*******************************************************************************
Gallery
*******************************************************************************/

.gallery {
}

@media screen and (min-width: 601px) {

    .masonry {
        max-width: 1600px;
        display: flex;
        flex-wrap: wrap;
    }

    .masonry-brick {
        border-radius: 10px;
        margin: 0.3em;
        height: 240px;
        flex-grow: 1;
        background-color: darkgrey;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .masonry-img {
        object-fit: cover;
        border-radius: 10px;
        background-color: pink;
        max-width: 100%;
        height: auto;
        width: auto;
    }

    .masonry-brick-w-1 {width: 80px;}
    .masonry-brick-w-2 {width: 150px;}
    .masonry-brick-w-3 {width: 180px;}
    .masonry-brick-w-4 {width: 250px;}
    .masonry-brick-w-5 {width: 300px;}
    .masonry-brick-w-6 {width: 350px;}
    .masonry-brick-w-7 {width: 400px;}
    .masonry-brick-w-8 {width: 450px;}
    .masonry-brick-w-9 {width: 500px;}
}

@media screen and (max-width: 600px) {
    .masonry {
    }

    .masonry-brick {
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0.5em auto;
    }

    .masonry-img {
        object-fit: cover;
        background-color: pink;
        max-width: 100%;
        height: auto;
        width: auto;
    }

    .masonry-brick-w-1 {width: 60%;}
    .masonry-brick-w-2 {width: 70%;}
    .masonry-brick-w-3 {width: 80%;}
}

/*******************************************************************************
Single image
*******************************************************************************/

.single-img {
    width: 80%;
    margin: auto;
}

.single-img img {
    border-radius: 10px;
}
