body {
    background-color: black;
    padding-top: 30px;
    color: rgb(255, 0, 80);
    display: table;
    margin: auto;
    font-family: 'EvangelionRegular';
    transition: background-color 400ms ease;
}

h3 a {
    text-decoration: none;
    color: inherit;
}

body.red-mode {
    background-color: rgb(127, 0, 38);
}

ul.custom-char-list {
    list-style-type: none;
}
  
ul.custom-char-list li::before {
    content: "ʚ ";
    color: rgba(255, 0, 85, 0.75);
    margin-left: -20px;
}

::selection {
    background: rgba(255, 0, 60, 0.386);
}

a {
    color: rgb(255, 0, 70);
}

@font-face {
    font-family: 'Inconsolata';
    src: url(assets/Inconsolata/Inconsolata-VariableFont_wdth\,wght.ttf);
}

@font-face {
    font-family: 'Evangelion';
    src: url(assets/Evangelion/Evangelion.otf);
}

@font-face {
    font-family: 'EvangelionRegular';
    src: url(assets/EvangelionRegular/EvaRegular.otf);
}

.quote {
    font-size: 0.7rem;
    font-style: italic;
}

.glow {
    color: rgba(255, 0, 85, 0.75);
    text-shadow:
      0 0 2px rgba(255, 0, 60, 0.6),
      0 0 6px rgba(255, 0, 60, 0.45),
      0 0 12px rgba(255, 0, 60, 0.3);
    letter-spacing: 0.02em;
}

.page {
    position: relative;
}

.rose {
    color: rgb(255, 0, 70);
    position: absolute;
    right: 5px;
    bottom: 22px;
}

.rose svg {
    stroke: currentColor;
    stroke-width: 0.5;
    background: transparent;
    fill: none;
    filter:
        drop-shadow(0 0 10px rgba(255, 0, 60, 0.8))
        drop-shadow(0 2px rgba(255, 0, 60, 0.7))
        drop-shadow(0 0 2px rgba(255, 0, 60, 0.7))
        drop-shadow(0 0 18px rgba(255, 0, 60, 0.5));
}

.glass {
    animation: floatY 2s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    color: rgb(255, 0, 70);
    position: absolute;
    right: -30px;
    bottom: 25px;
}

/* .glass svg:hover {
    transition:
        transform 220ms ease,
        filter 220ms ease;
    transform-origin: center center;
    transform: scale(1.04);
    cursor: crosshair;
} */

.glass svg {
    stroke: currentColor;
    stroke-width: 10;
    fill: rgba(255, 0, 60, 0.895);
    filter:
        drop-shadow(0 0 5px rgba(255, 0, 68, 0.963))
        drop-shadow(0 1px 1px rgba(255, 0, 68, 0.856))
        drop-shadow(0 0 15px rgba(255, 0, 68, 0.856))
        drop-shadow(0 0 20px rgba(255, 0, 68, 0.557));
}

.glass svg path {
    fill: rgba(255, 0, 60, 0.895);
    filter:
        drop-shadow(0 5px rgba(255, 0, 60, 0.8))
        drop-shadow(0 2px rgba(255, 0, 60, 0.7));
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
  }