:root {
  --primary: #F05A27;
  --gray-600: #6c757d;
  --gray-900: #212529;
}

html {
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #212529;
  background: #fff;
  margin: 0;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: #bd3a0d; }
