body {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
/* ------------------------------ */
.Btn {
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    background-color: #0f0f0f;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 22px;
    border: none;
    box-shadow: 5px 5px 10px #0000001a;
    transition: 0.2s 0s linear;
    cursor: pointer;
    overflow: hidden;
}
.svgIcon path {
    fill: white;
}
.Btn::before {
    width: 150px;
    height: 150px;
    position: absolute;
    content: "";
    background-color: white;
    border-radius: 50%;
    left: -100%;
    top: 0;
    transition: 0.2s 0s linear;
    mix-blend-mode: difference;
}
.Btn:hover::before {
    transition: 0.2s 0s linear;
    transform: translate(100%,-50%);
    border-radius: 0;
}
.Btn:active {
    transform: translate(5px,5px);
    transition: 0.2s 0s linear;
}