Change Size and font in add to cart button Prestige

Good day everyone,

I would like to make my ATC button smaller and change the font size and weight in it.

This is my ATC button now:

This is the desired result:

Would really apreciate some help with this

Store url: https://donutsole-hu.myshopify.com/

Password: twilye

Thank you very much in advance!

@NZA

Please add the following code at the bottom of your theme.css file.

@media screen and (min-width: 641px){
.template-product .ProductForm__AddToCart {
    width: 55%;
    margin: 0 auto;
	font-weight: 900;
    letter-spacing: 0px;
}
}

Hope this helps.

Thanks!

hello @NZA

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

@media screen and (min-width: 789px){
.template-product .ProductForm__AddToCart {
    width: 50%;
    margin: 0 auto;
    font-weight: 900;
     letter-spacing: 0px;
}
}