  .gallery_flex {
            display: flex;
            /* flex-grow: 1; */
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
            margin: 50px;
            height: 200vh;
            /* align-items: stretch; */
        }

        .gallery_flex>div { /* BACKGROUND FOR BOXES */
            /* border: 2px black dashed;
             */
            
        }

        .m1 {
            /* THIS AFFECTS ALL BOXES */
            /* flex-grow: 1; */
            /* margin: 20px; */
            flex-basis: 200px;
            /* height: 200px; */
            background-color: #ccc;
        }

        /* .lb-image a {
            margin: 20px;
            flex-basis: 200px;
            height: 200px;
            padding: 50px;
        } */

        .lb-image img {
            flex-basis: 200px;
            height: 280px;
            padding: 30px;
            margin: 20px;
        }

        /* * {
            border: red solid;
        } */


        