#gallery {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;

    position:fixed; 
    top: 0;
    width:100vw; 
    height: 100vh; 
    background-color: rgba(0,0,0,0.96);
    z-index: 10000;
    display: none;
    color: white;
}
#gallery div {
    cursor: pointer;
}
#galleryInfo {
    position: fixed;
    padding: 4px 10px;
    z-index: 10001;
}
#galleryLeftBtn {
    margin-top: 35px;
    position:fixed; 
    width: 8vw;
    line-height: calc(100vh - 70px); 
    padding-left: 10px;
    color: white;
    font-size:35px; 
    font-weight: 400;
}
.noTouchScreen #galleryLeftBtn:hover {
    padding-left: calc(4vw - 10px);
    background-color: rgb(78 73 0);
    font-weight: 500;
}
#galleryRightBtn {
    position:fixed; 
    right: 0;
    width: 8vw;
    margin-top: 35px;
    line-height: calc(100vh - 70px); 
    padding-right: 10px;
    text-align: right;
    color: white;
    font-size:35px; 
    font-weight: 400;
   
}
.noTouchScreen #galleryRightBtn:hover {
    padding-right: calc(4vw - 10px);
    background-color: rgb(78 73 0);
    font-weight: 500;
}
#galleryCloseBtn {
    position:fixed; 
    top:0;  
    line-height: 31px;
    height: 35px;
    text-align: right;
    width: 100vw;
    padding-right: 10px;
    color: white;
    font-size:35px; 
    font-weight: 400;   
}
.noTouchScreen #galleryCloseBtn:hover {
    background-color: rgb(78 73 0);
    font-weight: 500;
}
img {
    height: 100%; 
    width: 100%; 
    object-fit: contain;
}