Purple button change the color when it's hovered

Thank you so much for answering all the questions that I have!! You are the best.

I had quick question-- I am trying to change the button color (purple) to green.
I looked up the past thread and found how to change the color of the button,
however when it’s hovered the color is still purple.
I tried:

a.btn.btn-lg.btn-filled {
    background: #477f3f;
    border-color: #477f3f;
hover-color:#477f3f;
}

but the hovered button is still purple.
if you could help me with this issue, I would be much appreciated.

Thank you very much!!

Hi @caluyadesign,

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

Please try using the below CSS code.

a.btn.btn-lg.btn-filled:hover,
a.btn.btn-lg.btn-filled {
    background: #477f3f;
    border-color: #477f3f;
hover-color:#477f3f;
}

Best Regards,
Movin