        *{
            /*margin: 0;
            padding: 0;*/
            box-sizing: border-box;
        }
        main p{
            margin: 5px;
            display: inline-block;
            cursor: pointer;
            color: white;
        }
        main a{
            color: white;
            text-decoration: none;
        }
        .photo-gallery-container{
            position: relative;
           height: 600px;
            overflow-y: scroll;
           border-radius: 10px;
            padding-top: 20px;
        }
        .photo-gallery-container .photo-container{
          display: flex;
          flex-wrap: wrap;
          gap: 15px;
        justify-content: center;
        padding: 10px;
        }
        .photo-gallery-container .photo-container .photo{
        width: 125px;
        box-shadow: 0 5px 15 px black;
        overflow: hidden;
        cursor:pointer;
        }
        .photo-gallery-container .photo-container .photo img{
            width: 125px;
            /*width: 100%;
            height: 100%;*/
            object-fit: cover;
            margin: 0;
            border: solid 5px white;
            /*border: 20px solid transparent;
            border-image: url('images/whitelace.png') 34 round;
            background-clip: padding-box;*/
            
        }
        .photo-gallery-container .popup-image{
            position: fixed;
            top: 0;
            left: 0;
            background: rgba(0,0,0,.9);
            height: 100%;
            width: 100%;
            z-index: 100;
            display: none;
        }
        .photo-gallery-container .popup-image img{
            width: 700px;
        /*width: 55%;
        height: 90%;*/
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        position: absolute;
        border: solid 5px white;
           /* border: 20px solid transparent;
            border-image: url('images/whitelace.png') 34 round;
            background-clip: padding-box;
        border-radius: 5px;*/
        object-fit: cover;
        }
        .photo-gallery-container .popup-image span{
            position: absolute;
            top: 10px; right: 30px;
            font-size: 60px;
            font-weight: bolder;
            color: white;
            cursor: pointer;
            z-index: 100;
            font-family:arial;
        }
                .photo-gallery-container .vertical-popup-image{
            position: fixed;
            top: 0;
            left: 0;
            background: rgba(0,0,0,.9);
            height: 100%;
            width: 100%;
            z-index: 100;
            display: none;
        }
                .photo-gallery-container .vertical-popup-image img{
            width: 400px;
        /*width: 55%;
        height: 90%;*/
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        position: absolute;
        border: solid 5px white;
           /* border: 20px solid transparent;
            border-image: url('images/whitelace.png') 34 round;
            background-clip: padding-box;
        border-radius: 5px;*/
        object-fit: cover;
        }
        .photo-gallery-container .vertical-popup-image span{
            position: absolute;
            top: 10px; right: 30px;
            font-size: 60px;
            font-weight: bolder;
            color: white;
            cursor: pointer;
            z-index: 100;
            font-family:arial;
        }
        @media (max-width: 950px) {
            .photo-gallery-container .popup-image img{
                width: 85%;
            }
            .photo-gallery-container .popup-image span{
                 top: 10px; right: 10px;
                 font-size: 50px;
              }
        }
 