/* --- Random Quote --- */
@font-face {
    font-family: 'MagicCardsNormal';
    src: url('/assets/fonts/cyrodiil/Cyrodiil_Italic.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.random-quote {
    color: #3a2418;
    width: fit-content;
    max-width: 80%;
    margin-left: 10%;
    margin-right: auto;
    box-sizing: border-box;
    text-align: left;
    transition: opacity 0.4s ease;
    
    font-family: 'MagicCardsNormal', serif;
    
    /* no background-image here anymore, the scroll PNG becomes the border */
    background: transparent;
    
    /* border-image requires a border to be set, even if invisible */
    border-style: solid;
    border-width: 0 80px;  /* top/bottom 0, left/right 80px for the rolled ends */
    
    border-image-source: url('/assets/images/UI/scroll3.png');
    border-image-slice: 0 270 0 270 fill;
    border-image-repeat: stretch;
    border-image-width: 1;

    
    padding: 3rem 3rem 3rem 3rem; /*1.5rem 2rem*/
}