How can I adjust the font size in TASTE theme across my entire site?

I want to change the font size in TASTE theme the whole site has a font size that is too big and ive already made the font as small as it can go via the theme customization. I would like the nav bar in a size 10 and product and other pages in a size 9. also- let me know if this is possible but can i make everything on my site in caps via coding the theme?

Site: https://0d37d1-2.myshopify.com/

Password: SHOPIFY2023

Hi @emilyyy ,

You can go to AdminSale ChannelsOnline StoreThemesEdit Code → Select base.css or global.css → Write the following code:

nav.header__inline-menu li span, nav.header__inline-menu li a{
  font-size: 10px!important;
}
body{
  text-transform: uppercase!important;
  font-size: 9px;
}
.product-form__submit, shopify-buy-it-now-button .shopify-payment-button__button, share-button__button{
  text-transform: uppercase!important;
}

Result:

![view - 2023-12-12T141842.130.png|1918x928](upload://mCwFX9Dp6LP1nxMAsYETBhwZM8T.jpeg) Hope it works @emilyyy