:root {
--I-red: #E70013;
--I-blue: #1F2F4C;
--I-yellow: #FBD316;
}

* {
    box-sizing: border-box;
    scrollbar-color: var(--I-red) var(--I-blue);
    scrollbar-width: thin;
}

body {
    font-family: "Libertinus Sans";
    background-color: #1F2F4C;
    color: #FBD316;
    background: linear-gradient(var(--I-blue), var(--I-red), var(--I-yellow));
    overflow-x: hidden; 
    
}

.evilcontainer {
    width: fit-content;
    border: solid var(--I-yellow);
    padding: 10px;
    background: var(--I-red);
    box-shadow: 7px 7px 20px var(--I-blue)
}

.container {
    border: solid var(--I-yellow);
    max-width: 950px;
    margin: auto;
    z-index: 100;
    background: var(--I-blue);
    padding: 10px;
}

::selection {
    color: var(--I-yellow);
    background: var(--I-red);
}

.row {
    display: flex;
}

.column {
    display: flex;
    flex-direction: column;
}

h2 {
    background: linear-gradient(to right, var(--I-red), var(--I-yellow));
    padding: 10px;
    margin-top: 10px;
    font-family: "Amarante";
    font-size: xx-large;
    border: solid;
}

h2::after, h2::before {
    content: " ✶ ";
}

h1 {
    font-family: "Metamorphous";
    font-size: 50px;
    margin-bottom: 0;
    font-style: italic;
    text-shadow: 4px 4px var(--I-red)
}

h3 {
    margin: 0px;
    font-size: 40px;
    margin-bottom: 4px;
}

p, figcaption {
    font-size: larger;
}

b {
    font-size: x-large;
}

a {
    color: var(--I-yellow);
}

a:hover {
    color: var(--I-red);
    font-weight: 700;
}

#back {
    font-size: 30px
}

#volume1 {
    margin: 10px;
    border: var(--I-red) solid 3px;
    margin-right: 0;
    max-height: 350px;
}

.charpic {
    width: 120px;
    height: 120px;
    margin-right: 5px;
    border: solid;
}

figcaption {
    overflow-y: auto;
    scrollbar-color: var(--I-red) var(--I-blue);
    scrollbar-width: thin;
    padding-right: 2px
}

figure {
    height: 126px;
    margin-bottom: 10px;
    overflow-y: auto;
    margin: 0;
}

section p {
    margin: 0;
    font-size: 17px;
}

#Ichi1 {
    position: fixed;
    bottom: -15px;
    right: 0;
    height: 400px;
}

#ichi2 {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: -10;
    height: 1250px;
    filter: blur(2px);
    opacity: 50%;
    transform: scaleX(-1)
}

#spoilers {
    text-align: center;
    background: var(--I-blue);
    padding: 10px;
    padding-top: 20%;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
}

button {
    background: var(--I-red);
    border: solid 2px;
    padding: 10px;
    color: var(--I-yellow);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

#extras {
    height: fit-content;
    border: solid;
    padding: 5px;
}

#pngs img{
   max-height: 150px;
}

#mpanel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: fit-content;
    height: fit-content;
}

#mpanel img{
    max-height: 250px;
    width: auto;
    margin: 3px;
    border: solid 2px;
}

.divider{
    background: url(../Materials/Borders/87.gif);
    background-repeat: repeat-x;
    height: 27px;
}

@media (max-width: 1200px) {
    #Ichi1 {display: none;}
}

@media (max-width: 700px) {
    #volume1 {display: none}
}