How can I change the button color on a specific section in Stiletto theme?

Hi I’m using Stiletto theme and want to change the button color on this section only, it’s not customizable through the theme settings because of the type of section it is… I want to change them to be opposite of what they are: #FCFBF0 fill with #191919 text color.

URL: https://afca7f-2.myshopify.com/

Add this code to Custom CSS of that section

.btn--primary::before {
background: #FCFBF0;
}
.btn.btn--primary {
color: #191919;
}