How do I change how my links look in my posts?

I’ve tried using other answers from forums here but nothing is working. It is not clear that my links are links and they have a weird purple highlight over them (must have done that on accident). Anyway, I do not know how to adjust it. I would simply like them to be underlined and dark purple so they look like clickable links. Here is my site http://www.reallyraquel.com. Attached is an example of how links look.

Thanks!

Hi @raquel,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

#page  .entry-content a {
    color: #881fb9;
    text-decoration: underline;
}

#page  .entry-content a:hover {
    background-color: transparent;
}

Best Regards,
Movin