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

ul.custom-char-list {
    list-style-type: none; /* Removes default bullets */
}
  
ul.custom-char-list li::before {
    content: "ʚ ";
    color: rgba(255, 0, 85, 0.75);
}

::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);
}

.quote {
    /* padding-top: 100px; */
    font-size: 0.8rem;
    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: 42px;
    bottom: 20px;
}

.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: 10px;
    bottom: 30px;
}

.glass svg {
    stroke: currentColor;
    stroke-width: 0.2;
    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));
}

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