/* index.php ka apna CSS. Pehle isi page ke andar <style> me tha,
   content bilkul waisa hi hai - sirf external file me shift kiya gaya. */

        /*============ Gallery ==========*/
        .lb {
            display: none;
            position: fixed !important;
            z-index: 9999;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(0, 0, 0, 0.8);
            text-align: center;
        }

        .lb img {
            max-width: 90%;
            max-height: 80%;
            margin-top: 4%;
        }

        .lb:target {
            outline: none;
            display: block;
        }

        a.lb:hover {
            cursor: default;
        }

        img:hover {
            cursor: pointer;
        }

        .close {
            position: absolute;
            right: 32px;
            top: 32px;
            width: 32px;
            height: 32px;
            opacity: 0.3;
        }

        .close:hover {
            opacity: 1;
        }

        .close:before,
        .close:after {
            position: absolute;
            left: 15px;
            content: ' ';
            height: 33px;
            width: 2px;
            background-color: #fff;
        }

        .close:before {
            transform: rotate(45deg);
        }

        .close:after {
            transform: rotate(-45deg);
        }

    
