//------------------------------------------------------------------------------
// @base: Global
//------------------------------------------------------------------------------
// @author: hanakin -- midaym
// @version: 1.3.0
// @description:
//
// High-level, page-level styling.
//
// 1. Set the default `font-size` and `line-height` for the entire project,
//    sourced from our default variables. The `font-size` is calculated to exist
//    in rems, the `line-height` is calculated to exist unitlessly.
//
//------------------------------------------------------------------------------


//
// #scss

html,
body {
	font-family: $default-font;
	font-size: $default-font-size; // [1]
	font-weight: 400;
	line-height: unit-less($default-line-height); // [1]
	background-color: $default-page-color;
	color: $default-background-item-color;
}
