/* Smooth scrolling when clicking nav links */
html {
  scroll-behavior: smooth;
}

/* Slightly better text rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection colour matches brand */
::selection {
  background-color: #cf9056;
  color: #1d1d1d;
}