79623121

Date: 2025-05-15 10:35:43
Score: 0.5
Natty:
Report link

You need to add transition to your button: something like this:

.btn {
    float: left;
    font-size: 18px;
    font-weight: 500;
    padding: 13px 39px;
    margin-bottom: 0;
    background-color: transparent;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 2px solid #2F3C7E;
    border-radius: 7px;
    color: #2F3C7E;

    // Transition added (You can add transition to a specific thing like color or background color or just use all)
    transition: all ease-in-out 0.2s;
}

also have a look at this: https://developer.mozilla.org/en-US/docs/Web/CSS/transition

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MrXQ