How to delete the hyperlink underline and change the color of the text

I am using the debut theme.

I’ve written a blog post and add a hyperlink to some words.

But the there is an ugly line under the words. I want to delete it.

Also, how to change the color of the words blue where we usually see on the internet?

Link of the blog post:

https://puppycanva.com/blogs/dog/how-to-stop-my-puppy-from-being-a-vampire

thanks

Please add below line of code in theme.css file at bottom

.template-article article a:not(.btn) {
    border-bottom: 0;
    color: #0000FF;
}

Hello There,

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.

p.western a {
color: blue!important;
}
.rte a:not(.btn) {
border-bottom: inherit!important;
}