/**
 * Foundation, very minimal reset / normalize
 */

* {
  box-sizing: border-box;
}

html {

  // improved touch events (http://stackoverflow.com/questions/12238587/eliminate-300ms-delay-on-click-events-in-mobile-safari)
  -ms-touch-action: manipulation;
  touch-action: manipulation;

  // always show vertical scroll bar to prevent jumpy content
  overflow-y: scroll;
}

body {
  margin: 0;

  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: $color-text;
  background-color: $color-body-bg;

  // enabled better font rendering
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

// padding, margin reset
figure, section, footer, header,
ul, ol, li,
p, h1, h2, h3, h4, h5 {
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}
