/* PASTE THIS ENTIRE BLOCK INTO THE CARGO CSS EDITOR */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

/* --- Custom CSS to Fix Link Color --- */

/* Style for standard and visited links */
a,
a:link,
a:visited {
  color: #000000; /* Sets the link color to black */
  text-decoration: underline; /* Underlines the link for clarity */
  transition: color 0.2s ease-in-out; /* Adds a smooth color change effect */
}

/* Style for when you mouse over a link */
a:hover {
  color: #555555; /* Changes color to a dark gray on hover */
  text-decoration: none; /* Removes the underline on hover */
}

/* --- Link Styling --- */

/* This styles all links in their default state */
a {
    color: #6fa8c9; /* Sets the link color to match your text */
    text-decoration: none; /* Removes the default underline */
}

/* This styles the link when you hover your mouse over it */
a:hover {
    text-decoration: underline; /* Adds an underline on hover for usability */
}
