/* page style */
body {
  font-family: Arial, sans-serif;
  color: #1e3932;
  background-color: #d4f2e3; /* light green background */
}

/* main title */
h1 {
  color: #006241;
}

/* section title */
h2 {
  color: #00754a;
}

/* regular links */
a {
  color: #004b2b;
}

/* clicked links */
a:visited {
  color: #5f4636;
}

/* when mouse is over link */
a:hover {
  color: #d4a017;
}