/* Here's a refreshed style sheet with a light grey theme. Since the background is now light, the link colors are darker shades to maintain good contrast and readability, and the active state uses amber instead of red. */

@font-face {
  font-family: 'LuxiMonoRegular';
  font-style: normal;
  src: url(fonts/luximr.ttf) format('truetype');
}
body{
  font-family: 'LuxiMonoRegular', 'New-Courier', 'monospaced';
  background-color: #d4d4d4;   /* light grey, easy on the eyes */
  color: #1a1a1a;              /* near-black, softer than pure black */
}
tt{
  font-family: 'LuxiMonoRegular', 'New-Courier', 'monospaced';
}
/*
- '#1e5a9e' (link)        – Deep blue, strong contrast against light grey, keeps the terminal feel.
- '#5a3d8a' (visited)     – Dark purple, clearly distinguishes visited links without leaning pink.
- '#2c5282' (hover)       – Slightly darker blue + underline gives clear feedback on hover.
- '#b45309' (active)      – Amber/burnt orange for the active state - warm but not red or pink.
*/
a:link {
  color: #1e5a9e;
}
a:visited {
  color: #5a3d8a;
}
/*
a:hover {
  color: #2c5282;
  text-decoration: underline;
}*/
a:active {
  color: #b45309;
}

/*
A few notes on the choices:

- Background '#d4d4d4' is a neutral light grey. If it feels too bright, you could try '#c0c0c0' for a bit more contrast, or '#e0e0e0' for an even softer look.
- Font '#1a1a1a' is almost pure black but slightly softer, which tends to be easier on the eyes for long reading. If you want strictly black, swap it to '#000000'.
- Active color '#b45309' is a warm amber/burnt orange - it gives the same "you clicked it" feedback as the old coral without being red or pink.
- I re-enabled the hover underline since removing both color change and underline can make hover state hard to notice on a light background.
*/
