Check it out on jsfiddle as well: https://jsfiddle.net/phmttrsh/
#btn {
font-size: 16px;
height: 34px;
width: 120px;
border: 1px solid #20ACB3;
text-align: center;
line-height: 34px;
background-color: #20ACB3;
color: #ffffff;
border-radius: 5px;
transition: transform 200ms cubic-bezier(0.25, 0.39, 0.39, 2.01);
}
#btn:hover {
cursor: pointer;
transform: scale(1.05);
}
<div id="btn">Click</div>
On Safari, when hovering over the button, the font color changes briefly. Why does this occur?