/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@font-face {
    font-family: 'Pusia';
    src: url("/assets/Pusia-Bold-6308ce86.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url("/assets/Rubik-SemiBold-06520c33.ttf") format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url("/assets/Rubik-SemiBoldItalic-e7109152.ttf") format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

:where(.lexxy-content):where(:not(lexxy-editor)) {
    color: white !important;
}

:where(.lexxy-content) {

    font-size: 18px;
    font-weight: 600;
    font-family: 'Rubik';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;

    h1, h2, h3, h4, h5, h6 {
        color: #fcc528;
        font-family: 'Pusia';
        margin-top: 1rem;
    }
    h2 {
        font-size: 27px;
    }
    h3 {
        font-size: 21px;
    }

    strong, b {
        font-family: 'Pusia';
        font-size:21px;
        color: #fcc528;

    }

    ul {
        list-style-type: none;
        list-style-position: inside;
    }

    li:before {
        content:"·";
        color: #fcc528;
        font-size:50px;
        vertical-align:middle;
        line-height:18px;
        margin-right:9px;
    }


}