Base styles

Base styles on top of normalize.css.

Box-sizing

Border box!

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

Remove borders

Browsers put weird borders on random things.

* {
  border: 0;
}