I am writing in Twine 2, Sugarcube 2.28.2
I would like to change the color of links already visited.
My simple story has only two links, to toggle back and forth between rooms
room1 says: [[room2]]
room2 says [[room1]]
My CSS code
body {background-color:White}
a {color:Green;}
a:hover {color:LightGreen;}
a:visited {color:Red;}
The link and hover colors work correctly, but there is no change after the link has been visited.t