This PR replaces globalStyles.module.scss with a CSS file to avoid recurring dependency issues with Sass. Because you cannot use impure selectors such as ":root" in CSS modules, the globalStyles are a standard CSS file to allow for the use of variables. All existing CSS modules can now use these global variables as well using the 'attribute: var(--variable-name)' syntax.
**package.json
remove sass as dependency
** various pages
All globalStyles imports have been updated from "import globalStyles from ''" to "import ''"
classNames have been updated as necessary to reference classes in new globalStyles.
** misc
Added a 'page--header' class to globalStyles. Pages were previously referencing non-existent container classes specific to each page.
Added a gray background color variable that was referred to but never created to match the wireframes.
Update global styles to actually use primary font.
This PR replaces globalStyles.module.scss with a CSS file to avoid recurring dependency issues with Sass. Because you cannot use impure selectors such as ":root" in CSS modules, the globalStyles are a standard CSS file to allow for the use of variables. All existing CSS modules can now use these global variables as well using the 'attribute: var(--variable-name)' syntax.
**package.json
** various pages
** misc