/* Default link color */
p a:not(.button)  {
  color: #096640;
  text-decoration: underline;
}

/* Visited link */
p a:not(.button):visited {
  color: #096640;
  text-decoration: underline;
}

/* Hover state */
p a:not(.button):hover {
  color: #0B8351;
  text-decoration: underline;
}

/* Active (when clicked) */
p a:not(.button):active {
  color: #0B8351;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #096640;
  text-decoration: underline;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover, {
  color: #0B8351;
  text-decoration: underline;

}
h1 a:active,
h2 a:active,
h3 a:active,
h4 a:active,
h5 a:active,
h6 a:active {
  color: #0B8351;
}