I have a donate banner i have created for my site .. it works fine on desktop
But the color wont work on mobile browsers
Here is the code for the Donate Banner
.Donate {
background-color: #ffee00e3;
height: 50%;
width: 100%;
padding-top: 5px;
}
.PayPalClk {
text-align: center;
}
.PayPalTxt {
text-align: center;
color: #2a2626;
padding-top: 1em;
font-size: 16px;
line-height: 0;
padding: 0;
text-indent: 0;
display: block;
}
.PayPalbtn {
align-items: center;
justify-content: center;
font-family: 'Cabin', sans-serif;
display: inline-block;
background-color: #2a2626;
/*Font styling*/
text-transform: uppercase;
color: #ffee00e3;
font-weight: 500;
font-style: normal;
font-size: 0.700rem;
letter-spacing: 0.3em;
/*End of font styling*/
padding: 14px 60px 16px;
background-size: 10px;
text-decoration: none;
margin: 0.550rem;
border: 1px solid rgb(42, 38, 38);
border-radius: 4px;
}
<section class="Donate">
<p class="PayPalTxt">Help us Raise Seed Capital In Order to improve our Products and expand our Team for a better Environment. <i class="fa fa-smile-o"></i></p>
<div class="PayPalClk">
<a class="PayPalbtn" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2PE57UH79H8TY" target="_blank">Donate<i class="fa fa-gift"></i></a>
</div>
</section>
Any help or advise on how i could make it work would be helpful
Thanks