/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
/* colors for consistency
  --sepia: #381F08;
  bright-red: #CC0700
  --medium-red: #C70700;
  dark-red: #400200
body {
  background-color: #efeee8;
  color: #381F08; 
  font-family: Times;
  font-size: 20px;
      /* Set the custom image as the cursor */
      cursor: url('https://thesignsofimminence.neocities.org/small%20hand%20cursor.png'), auto;
    }
/* unvisited link */
a:link {
  color: #000000;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #000000;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #000000;
  text-decoration: underline;
}

/* selected link */
a:active {
  color: #000000;
  text-decoration: underline;
}