How to make a gradient for text from color to color?
.gradient {
background: linear-gradient(to right, blue, green 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 300%;
}
<div class="gradient">COUNTRY</div>