html {
    font-size: 120%;
}
body {
    align-content: center;
    max-width: 1280px;
    margin: auto;
    background-color: #191008;
    color: #F7EFD6;
    font-family: "Clear Sans", Arial, Helvetica, sans-serif;
/*    margin: 0;*/
/*    padding: 0;*/
}
body.spirit-drop {
    background-color: #081919;
}
body.spirit-drop-w-sidebar {
    background-color: #081919;
    max-width: 1600px;
}
.sidebar {
    font-size: 100%;
    height: 100%;
    width: 320px;
    position: fixed;
    overflow-y: scroll;
    top: 0;
    bottom: 0;
    left: 0;
    margin: 4px 4px;
}
.sidebar ol ol {
    padding-left: 16px;
}
.sidebar a {
    display: block;
}
.content {
    margin-left: 320px;
}
img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
p {
    text-align: justify;
}
td {
    outline: #848484;
    outline-style: solid;
    outline-width: 1px;
}
select {
    background-color: #292119;
    color: #FFFFFF;
    padding: 8px 8px;
    font-size: 100%;
    font-family: "Clear Sans", Arial, Helvetica, sans-serif;
}
button, .button {
    border: none;
    cursor: pointer;
    background-color: #292119;
    color: #FFFFFF;
    padding: 8px 8px;
    font-size: 100%;
    font-family: "Clear Sans", Arial, Helvetica, sans-serif;
}
button:hover, .button:hover {
    background-color: #4080bf;
}
button:focus, .button:focus {
    background-color: #bfbf40;
}
button:focus:hover, .button:focus:hover {
    background-color: #40bf40;
}
.code-block {
    tab-size: 2em;
    outline: #848484;
    outline-style: solid;
    outline-width: 1px;
    background-color: #081919;
    padding: 4px;
}
code {
    font-family: Lucida Console, monospace;
    background-color: #081919;
}
.code-instance-field {
    color: #FFC584;
}
.code-value {
    color: #C5FF84;
}
.code-comment {
    color: #197319;
}
.code-keyword {
    color: #FF8484;
}
.code-function {
    color: #FFFF84;
}
.code-minoColor {
    color: #FF84FF;
}
.code-minoMeta {
    color: #84FFFF;
}
.code-minoEmpty {
    color: #84848480;
}
a {
    color: #84FFFF;
}
.back-button a {
    text-align: center;
    font-size: 150%;
    padding: 8px 8px;
    cursor: pointer;
}
.back-button a:hover {
    background-color: #4080bf;
}
.top-navigation {
    margin: 0;
    font-size: 125%;
    background-color: #808080aa;
    outline-color: #404040aa;
    overflow: hidden;
}
.top-navigation a {
    float: left;
    text-align: center;
    padding: 8px 8px;
}
.top-navigation a:hover {
    background-color: #4080bf;
}
.top-navigation a.active {
    background-color: #bfbf40;
}
.top-navigation a.active:hover {
    background-color: #40bf40;
}
.game-selection {
    font-size: 125%;
}
img.selectable {
    transition: 0.2s;
}
img.selectable:hover {
    outline: #0080FF solid 4px;
    cursor: pointer;
}
img.selectable.active {
    outline: #FFFF00 solid 4px;
}
img.selectable.active:hover {
    outline: #00FF00 solid 4px;
    cursor: pointer;
}
.noscroll {
    overflow: hidden;
}
.spoiler {
    background-color: #404040;
    color: #40404000;
    transition: 0.2s;
}
.spoiler:hover {
    color: #808080;
}

.fade-in-after-5-seconds {
    opacity: 0;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1s;
    animation-delay: 4s;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Modal */
.modal-preview {
    float: left;
    width: 16%;
    max-width: 320px;
    margin: 0.333333333%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000000bf;
    align-content: center;
}

.modal-content {
    padding-top: 96px;
}

.modal-close {
    color: white;
    position: absolute;
    top: 12px;
    right: 24px;
    font-size: 250%;
    font-weight: bold;
    user-select: none;
    -webkit-user-select: none;
}

.modal-close:hover,
.modal-close:focus {
    color: #FF8080;
    text-decoration: none;
    cursor: pointer;
}

.modal-slides {
    display: none;
    float: center;
    margin: auto;
}

.modal-prev,
.modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -48px;
    color: white;
    font-weight: bold;
    font-size: 150%;
    transition: 0.2s;
    border-radius: 0 4px 4px 0;
    user-select: none;
    -webkit-user-select: none;
}

.modal-prev {
    left: 0;
}

.modal-next {
    right: 0;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-caption-container {
    text-align: center;
    padding: 4px 16px;
    color: white;
}