Try adding this to the end of the code. It will make all your links blue.
.post a {
color: #1574a5;
text-decoration: none;
}`
Adding this will make all visited links green.
.post a:visited {
color: #74a415;
text-decoration: none;
}
If you don’t like those colors, go to https://www.color-hex.com/ and choose whatever color you like, then replace the colors.