.hover-button {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    background-color: #6c5ce7;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    overflow: hidden;
    transition: color 0.3s ease;
    margin: 10px;
}
.hover-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #a29bfe;
    transition: left 0.3s ease;
    z-index: -1;
}
.hover-button:hover::before {
    left: 0;
}
.hover-button:hover {
    color: #2d3436;
}