:root {
    --clrBG: #1a290f;
    /* --clrAccent: #222222; */
    --clrAccent: #14210d;

    --clrPage: white;
    --clrText: black;

    --clrAccentText: #707070;
    --clrHeading: #70ad47;    
    --clrBorder: #8c8c8c;
    --clrHover: #ff9f2d;

    --clrGreen: #70ad47;
    --clrGreenLight: #FA9104;
    --clrGreenDark: #476d2d;
    --clrOrange: #f5821f;
    --clrOrangeLight: #f69b45;
    --clrYellow: #fab928;
    --clrBlue: #23a7e0;
    --clrRed: #9C0000;

    --clrSilver: #CCCCCC;
    --clrPopText: #4d4d4d;

    --ff-header: "Bitter", sans-serif;
    --ff-body: "Andika", sans-serif;
    --ff-other: "Montserrat", serif;

    --fs-h1: 2.074rem;
    --fs-h2: 1.728rem;
    --fs-h3: 1.44rem;
    --fs-h4: 1.44rem;
    --fs-h5: 1.44rem;
    --fs-h6: 1.2rem;

    --fs-p: 1.15rem;
    --fs-s: 0.833rem;
    --fs-xs: 0.694rem;
}

/*
=======================================
Type Scale
=======================================
*/


html {
    font-size: 100%;
    color: var(--clrText);
    font-family: var(--ff-body);
}


@media only screen and (max-width: 600px) {
    html {
        font-size: 14px;
    }
}

@media only screen and (min-width: 600px) {
    html {
        /* font-size: 16px; */
        font-size: 14px;
    }
}

@media only screen and (min-width: 800px) {
    html {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1000px) {
    html {
        font-size: 12px;
    }
}

h1 {
    font-size: var(--fs-h1)
}

h2 {
    font-size: var(--fs-h2)
}

h3 {
    font-size: var(--fs-h3)
}

h4 {
    font-size: var(--fs-h4)
}

h5 {
    font-size: var(--fs-h5)
}

h6 {
    font-size: var(--fs-h6)
}

p {
    font-size: var(--fs-p);
}

li {
    font-size: var(--fs-p);
}

@media only screen and (max-width: 960px) {
    p {
        font-size: 1rem;
    }
    li {
        font-size: 1rem;
    }
}


/*
=======================================
Fonts - Elements
=======================================
*/

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-header);
    font-weight: 400;
}

p {
    font-family: var(--ff-body);
    font-weight: 400;
    line-height: 2rem;
    text-align: justify;
}

li {
    font-family: var(--ff-body);
    font-weight: 400;
    /* line-height: 2rem; */
}

nav {
    font-family: var(--ff-other);
    font-weight: 500;
    /* text-transform: uppercase; */
}

nav li {
    font-family: var(--ff-other);
}

strong {
    font-weight: 600;
    color: var(--clrBG);
}

details summary::-webkit-details-marker {display: none;}

.copyR {
    /* font-family: "Open Sans", monospace; */
    font-family: var(--ff-body);
    font-size: var(--fs-s);
    color: white;
}

.page-spacer {
    width: 100%;
    height: 3rem;
}

.vertical-divider {
    width: 0;
    border-right: 1px solid var(--clrGreen);
}

.page-highlight {
    color: lightgreen !important;
    font-weight: 700;
}

.sidebar-header--mobi {
    font-size: var(--fs-h5);
    color: var(--clrPage);
    font-weight: bold;

    display: none;
    justify-content: center;
    align-items: center;

    background-color: var(--clrGreen);
    padding: 1rem 0;
}

@media only screen and (max-width: 960px) {
    .sidebar-header--mobi {
        display: flex;
    }
}


/*
=======================================
Background Colors
=======================================
*/

.is-orange {
    background-color: var(--clrOrange);
}

.is-purple {
    background-color: var(--clrPurple);
}