/******************************************************************************
* Title: general.css
* Author: Hunter Schoonver ~ Web Designer ~ hunter@skoonie.com
* 
* Purpose:
* 
* This cascading style sheet provides a general look and feel for the entire 
* website, which is why it is in the "sitewide" folder. To provide a consistent
* style across the site, this css file should be included in all pages.
*
* Example usage (using root-relative path):
* 		<link rel="stylesheet" href="/sitewide/general.css">
*
*/


/* ------------------------------------------------------------------------------------------------ */
/* PREPARE FONTS -- load fonts that are necessary for the website */

/* end of PREPARE FONTS */
/* ------------------------------------------------------------------------------------------------ */


/* ------------------------------------------------------------------------------------------------ */
/* BASIC -- styling that applies to basic elements that affect all sections */

body, html {
	width: 100%;
	height: 100%;
	color: #fff;
	font-family: Arial;
	font-size: 20px;
	margin: 0;
	padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* end of BASIC */
/* ------------------------------------------------------------------------------------------------ */