.albumThumbs {
    display: block;
    float: left;
    width: 200px;
    margin: 10px;
    border: 5px solid #A2C9D3;
}
.overlay {
    width: 0px;
    height: 0px;
    position: fixed;
    overflow: hidden;
    left: 0px;
    top: 0px;
    padding: 0px;
    z-index: 105;
    text-align: center;
    opacity: 1;
    background: 
        -webkit-radial-gradient(
            center, 
            ellipse cover, 
            rgba(0, 0, 0, .75) 0%,
            rgba(0, 0, 0, 1) 100%
        );
    transition: opacity 0.5s linear;
}
.close,
.galNav {
    position: absolute;
    width: 100px;
    left: 50%;
    z-index: 1001;
    color: #fff;
    text-decoration: none;
    text-align: center;
    overflow: hidden;
    line-height: 23px;
    font-family: "lato","arial";
}
.close {
    height: 25px;
    margin-left: -50px;
    background: #999;
    background: rgba(50,50,50,0.75);
    text-transform: uppercase;
}
.content .album .galNav {
    list-style-type: none;
    padding: 0px;
    margin: 0px 0px 0px -50px;
    bottom: 20px;
    font-size: 2rem;
}
.galNav li:first-child {
    float: left;
}
.galNav li:last-child {
    float:right;
}
.prev,
.next {
    background: #999;
    background: rgba(50,50,50,0.75);
    color: #fff;
    padding: 1rem;
    text-decoration: none;
    display: block;
}
.prev:hover,
.next:hover,
.close:hover {
    color: #aaa;
}
.large {
    display: block;
    max-width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-height: 100%;
    position: relative;
    opacity: 0;
    box-shadow: 0px 2px 7px rgba(0,0,0,0.2);
    transition: opacity 0.5s linear;
}
.overlay:target {
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    bottom: 0px;
    right: 0px;
    padding: 4vh 6vw;
}
.overlay:target .large {
    opacity: 1;
}