How do I rotate a button and put it in a custom position?

I would like to position my button on the missile with custom html/css. How can I rotate the button and position it exactly on the missile with a specific angle?
domain: scmbg.shopify.com

Hi @bldvaid

I hope you are doing good and welcome to the Shopify Community!
I am San from MS Web Designer.

Please add this css in your bottom of the css file:
.banner__box {margin-top: -48%; -ms-transform: rotate(28deg); transform: rotate(28deg);}

Regards,

San

Hi @bldvaid

We’ve checked your website and found that your domain is not working.

Can you review it and provide your exact website URL?

@bldvaid add below css into base.css file

@media (min-width:768px){
.banner__box.content-container.content-container--full-width-mobile.color-inverse.gradient {
    margin-top: -50%;
    -ms-transform: rotate(28deg);
    transform: rotate(30deg);
}
}