/**
 * NintendoPower.wiki
 *
 * A Nintendo Power Archive
 *
 * Core CSS: npwiki.css
 *
 * Author: Alex Lilly (admin@nintendopower.wiki)
 *
 * Core styles
 *
 * (c) 2022 Nintendopower.wiki
 */

body {
    background: #333;
    color: white;
}

#content {
    z-index: 0;
}

#copyright-footer {
    color: #fff;
    font-size: 10px;
    text-align: center;
}

#logo {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

#preload {
    display: none;
}

.shelf {
    margin: 10px 10px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.shelf::after {
    background: url('/img/shelf.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    margin: auto;
    width: 800px;
    height: 75px;
    display: block;
    content: "";
    position: relative;
    transform: scale3d(1.1, 1.1, 1) translate3d(0, -15px, 0);
    z-index: -99;
}

.issue {
    display: inline-block;
    margin-left: 20px;
    margin-right: 20px;
}

.issue input[type="checkbox"] {
    display: none;
}

.issue input[type="checkbox"]:checked~img {
    transform: scale(2);
}

.issue img {
    width: 100px;
    height: 135px;
    box-shadow: 2px 2px black;
    transition: transform .2s ease;
    cursor: pointer;
}

.issue img:hover {
    transform: scale3d(1.2, 1.2, 1.2);
}

.lazy {
    visibility: hidden;
}