/*
  Minimal CSS reset
  Only resetting things that aren't going to be overridden later on
 */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
}
body {
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
a,
button {
  transition-property: color, background-color, text-decoration;
  transition-duration: .5s;
}
figure {
  margin: 0;
}
button {
  background: transparent;
  overflow: visible;
  border: 0;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}