@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+Devanagari:wght@400;500;600;700;800;900&display=swap');

@layer base {
    :root {
        --vj-wid-bg-bdy: #fff;
        --vj-wid-clr-link: #000;
        --vj-wid-fnt-1: 'Inter', sans-serif;
        --vj-wid-fnt-2: 'Noto Sans Devanagari', sans-serif;
    }

    :root .day_night {
    --vj-wid-bg-bdy: #28292b;
    --vj-wid-clr-link: #e2e2e2;
}

@media (prefers-color-scheme:dark) {
    :root {
        --vj-wid-bg-bdy: #28292b;
        --vj-wid-clr-link: #e2e2e2
    }

    :root .day_night {
        --vj-wid-bg-bdy: #fff;
        --vj-wid-clr-link: #000
    }
}

    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        border: 0;
        outline: 0;
        font-size: 100%;
        background: transparent;
        -webkit-tap-highlight-color: transparent;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    html {
        -ms-text-size-adjust: 100%;
        -webkit-text-size-adjust: 100%;
    }

    html,
    body {
        min-height: 100%;
        overscroll-behavior: none;
    }

    img,
    picture,
    video,
    canvas,
    svg {
        display: block;
        max-width: 100%;
    }

    a {
        background-color: transparent;
        text-decoration: none;
        color: var(--vj-wid-clr-link);
    }

    a:active,
    a:hover {
        outline-width: 0
    }

    *,
    a,
    button,
    input,
    select,
    textarea {
        -webkit-tap-highlight-color: transparent;
    }

    ul,
    ol,
    li {
        list-style: none;
    }

    b,
    strong {
        font-weight: bolder;
    }

    blockquote,
    q {
        quotes: none
    }

    mark {
        background-color: transparent;
        color: inherit
    }

    img {
        max-width: 100%;
        vertical-align: middle;
        border: none;
    }

    table {
        border-collapse: collapse;
        border-spacing: 0;
    }

    svg:not(:root) {
        overflow: hidden
    }

    ::-webkit-scrollbar {
        display: none;
    }

    button,
    input,
    textarea,
    select {
        background-color: transparent;
        border-radius: 0;
        color: inherit;
        line-height: inherit;
        -webkit-appearance: none;
        appearance: none
    }

    .clear-fix:after,
    .clear-fix:before {
        content: "";
        visibility: hidden;
        display: block;
        height: 0;
        clear: both;
    }

    body {
        background-color: var(--vj-wid-bg-bdy);
        font-family: var(--vj-wid-fnt-1);
        font-size: 14px;
        font-weight: 400;
        color: var(--vj-wid-clr-link);
        overscroll-behavior: none;        
    }
}