:root {
    /* Standard 8-point spacing scale */
    --space-0: 0;
    --space-5: 0.5rem;
    --space-10: 1rem;
    --space-15: 1.5rem;
    --space-20: 2rem;
    --space-25: 2.5rem;
    --space-30: 3rem;
    --space-40: 4rem;
    --space-90: 9rem;

    /* Colors */
    --color-white: #fff;
    --color-black: #000;
    --color-dark: #212121;
    --color-primary-dark: #981b1e;
    --color-accent-yellow: #fdb81e;
    --color-red-light: #cd2026;
    --color-link-hover-1: #F24900;
    --color-link-hover-2: #8B0000;
    --color-grey-dark: #333;
    --color-grey-light: #eee;
    --color-heading: #212121;
    --icon-blue: #205493;
    --link-footer: #767676;
}

::selection {
    color: var(--color-primary-dark);
    background: var(--color-accent-yellow);
}