Text Gradient - CSS3

HTML

<h1 class="gradient title">
Win $15,000 and recharge yourself.
</h1>

CSS

.gradient {
    background-image:
        -webkit-gradient(linear,left center,right center,
        color-stop(0%,#E59437),
        color-stop(100%,#D46378));
    -webkit-text-fill-color:transparent;   
    -webkit-background-clip:text;
}

.title {
    font-family: Arial;
    font-size: 260%;
    font-weight: 900;
}