Make price same font style as product title in featured collection

I’m working on this site: https://maison-rouge-ny.myshopify.com/

This is the password: thifis

In the featured collection at the bottom of the page I’m trying to make the price style the same as the product title, and I tried this code already and it didn’t work:

#shopify-section-template–18373606605012__featured_collection .full-unstyled-link {
font-family: Proxima Nova;
text-transform: uppercase;
font-size: 15px;
font-weight: bold;
letter-spacing:0;
}

#shopify-section-template–18373606605012__featured_collection .price__container {
font-family: Proxima Nova;
text-transform: uppercase;
font-weight: bold;
text-size-adjust: 13px!important;
letter-spacing:0!important;
}

How do I make the text under each product all the same?

I figured it out: instead of trying to edit the code in the base.css file, I just added the code to the Custom CSS part of that section in the theme editor. The code just styled the div element:

div {

font-family: Proxima Nova;
text-transform: uppercase;
font-size: 15px;
font-weight: bold;
letter-spacing:0;

}