It appears that the transition is smoother when I stop hovering over the button, compared to when I actually hover. Why might this be?
.button_1 {
border-width: 0.8px;
border-color: Lightgray;
background-color: hsla(209, 72%, 59%, 0.85);
padding: 8px 12px;
margin-left: 6px;
color: white;
transition: transform 0.5s ease-in-out, scale 0.5s ease-in-out;}
.button_1:hover {
background: hsla(209, 72%, 59%, 0.6);
padding: 10px 14px;
transform: translate(20px, 0px) scale(1.2);
transition: background-color 0.4s ease-in-out 2ms, padding 0.4s ease-in-out 2ms;}
<html>
<body>
<button type="submit" class="button_1";">Subscribe</button>
</body>
</html>