
.a-gallery-image {
    border: solid 4px white;
    display: inline-block;
    background-color: back;
    margin: 8px;
}
.a-gallery-image img {
    opacity: 0.5;
}
.a-gallery-image img:hover {
    opacity: 1.0;
}

.a-gallery-image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}
.a-gallery-image-fullscreen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.a-gallery-image-fullscreen-inner {
    position: relative;
    border: 5px solid white;    
}

.a-gallery-image-fullscreen-inner img {
    width: 100%;
}

#a-gallery-image-close {
    display: inline-block;
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: 20;
    width: 40px;
    height: 40px;
    background: no-repeat url("../img/apocalyptic-adventure-gallery-nav-close.png");
    cursor: pointer;
}
#a-gallery-nav-close-link {
    flex: none;
    text-align: center;
    position: fixed;
    bottom: 40px;
    z-index: 20;
    width: 100%;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    display: inline-block;
}

.a-gallery-image-nav-left,
.a-gallery-image-nav-right {
    width: 200px;
    height: max-content;
    position: absolute;
    top: 42%;
    text-align: center;
    z-index: 20;
    cursor: pointer;
}

.a-gallery-image-nav-right {
    right: 0;
}
.a-gallery-image-nav-right::after {
    content: url('../img/apocalyptic-adventure-gallery-nav-right.png');
}

.a-gallery-image-nav-left {
    left: 0;
}
.a-gallery-image-nav-left::after {
    content: url('../img/apocalyptic-adventure-gallery-nav-left.png');
}




.fade-in {
    animation: fadeIn ease 0.5s;
    -webkit-animation: fadeIn ease 0.5s;
    -moz-animation: fadeIn ease 0.5s;
    -o-animation: fadeIn ease 0.5s;
    -ms-animation: fadeIn ease 0.5s;
}

@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-moz-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-o-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}

@-ms-keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
}