#lightbox {
    display: block;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
    color:white;
    user-select:none;
}
.lightBoxPhoto{
    margin-top:60px;
    max-height:85%;
    max-width:100%;
}
.lightBoxButtonsRow{
    margin-top:-60px;
    font-size:40px;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.5);
}
.lightBoxButton{
    padding-left:10px;
    padding-right:10px;
    transition:0.1s;
    cursor:pointer;
    color:rgba(255,255,255,0.7);
    border-radius:10%;
}
.lightBoxButton:hover{
    background-color:rgba(0,0,0,0.6);
    text-shadow:none;
    color:white;
}