@media (max-width:992px) {
    .wallDiv {
        height: 100vw;
        /*background-image: url(../img/style1.jpeg);*/
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .wallDiv div:first-child {
        background-color: rgba(210, 210, 210, 0.5);
    }

    .wallDiv * p {
        color: black;
        font-weight: 700;
    }
}


@media (min-width:992px) {
    .wallDiv {
        height: 100vh;
        max-height: 1050px;
        background-image: url(../img/wall.jpeg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .wallDiv div:first-child {
        width: 30%;
        min-width: 350px;
    }

    /* v1 placeholder for pic
            .widgetDiv div:first-child {
                height: 100%;
                max-height: calc(100% - 250px); 
                background-image: url(../img/widget.png);
                background-size:contain;
                background-position:bottom;
                background-repeat:no-repeat;
            }
            */

    /* v3 div bg */
    .widgetDiv {
        height: 100vh;
        max-height: 1050px;
        background-image: url(../img/widget.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}