I found 2 issues on this CSS code -
- The whole button is not clickable.
- The text of the button always a different color than what I set. For Example, I set text color as white but still it is in a different color.
.visitbutton {
line-height: 1.6;
font-style: normal;
font-size: 20px;
text-align: center;
color: white;
background-color: #34495E;
text-decoration: none;
font-weight: bold;
font-family: Arial, sans-serif;
border: solid 0 #e3edf4;
border-bottom: 2px solid #AEB6BF;
border-radius: 4px;
padding: 16px 40px;
}
<div class="visitbutton">
<a href="https://google.com" target="_blank">Visit Now</a>
</div>