/**
 * reset.css
 * 
 * Resets the styling of HTML elements to a consistent baseline.
 * 
 */

/*-----------------------------------------------------------------------
# Reset
------------------------------------------------------------------------*/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}