// Remember to use rems and ems. http://css-tricks.com/rems-ems.

@import '~normalize.css/normalize.css';

// http://phonegap-tips.com/articles/essential-phonegap-css-webkit-tap-highlight-color.html
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

// Goodness.
*,
::after,
::before {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  color: #333;
  font-family: 'Segoe UI', 'Lucida Grande', 'Ubuntu', 'sans-serif';
  font-size: 16px;
  line-height: 1.5;
  background: #282c34;
}

#app {
  margin: 3rem;
  color: #61afef;
}
