
/************************************************************************* 
 * add a css reset - because different browsers use their own 'user agent '
 * stylesheet to make unstyled websites appear more legible. Reset is an 
 * attempt to make styles render consistently across different browsers
 *************************************************************************/

* {
	margin:          unset;
	box-sizing:      unset;
	padding:         unset;
	font-size:       unset;
	color:           unset;
	text-decoration: unset;
}