:root {
    --red: linear-gradient(black, #600);
    --green: linear-gradient(black, #060);
}
body {
    color: white;
    background-color: black;
    background-image: url("../../assets/webseries/versions/bg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.section {
    width: 720px;
    margin: auto;
}
.navi-title {
    font-size: large;
}
.navi button {
    padding: 2px;
    margin: 4px;
}
.disclaimer {
    margin-left: 8px;
    margin-right: 8px;
    font-size: x-small;
    font-weight: bold;
    text-shadow: 2px 2px black;
}
.version-title {
    font-size: x-large;
    font-weight: bold;
}
.version-thumbnails {
    margin-top: 4px;
    display: flex;
    background-color: black;
    border-top: 4px solid black;
    border-bottom: 4px solid black;
}
img {
    object-fit: contain;
    width: 100%;
    flex: 1;
}
.tags {
    margin-bottom: 4px;
    display: flex;
    background-color: black;
    border-bottom: 4px solid black;
}
.tag {
    flex: 1;
}
.tag-font {
    font-size: large;
    font-weight: bold;
    color: inherit;
}
.r {
    background-image: var(--red);
    color: #f00;
}
.g {
    background-image: var(--green);
    color: #0f0;
}
.retcon {
    color: #f00;
    text-shadow: 0 0 10px red, 0 0 10px red, 0 0 10px red, 0 0 10px red;
}
.theory {
    color: #ff0;
    text-shadow: 0 0 10px yellow, 0 0 10px yellow, 0 0 10px yellow, 0 0 10px yellow;
}
.noted {
    margin-left: 16px;
    margin-right: 16px;
}
.noted p {
    text-align: left;
}
.note {
    font-size: large;
    font-weight: bold;
    margin-left: 8px;
}
.textbox {
    background-color: black;
    border-radius: 4px;
}
.notes {
    padding: 8px;
}
.list-title {
    font-size: xx-large;
}
.list-category {
    font-size: x-large;
    text-align: left;
    margin-left: 20%;
    margin-right: 20%;
}
.list-entry {
    font-size: large;
    text-align: left;
    margin-left: 25%;
    margin-right: 20%;
    cursor: pointer;
    color: #ff6;
}
@media screen and (max-width: 800px) {
    .section {
        width: 99%;
    }
}