/* =========================================================
   GLOBAL STYLES
   ========================================================= */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base HTML & Body */
html {
  overflow-y: scroll;          /* always reserve scrollbar space */
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  color: #222;
  background: #dfe6ed;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #006400;
}

/* Utility */
img {
  max-width: 100%;
  display: block;
}
