How do i change my buy now button to a solid colour instead of outline

i want the solid background colour to be #9cb783 and the font colour to be #2f261e

Hello,

  1. Go to Online Store
  2. Edit Code
  3. Find theme.css file
  4. Add the following code in the bottom
.shopify-payment-button {
    background-color: #9cb783 !important; 
    color:#2f261e !important; 
}

Thanks!