.normal-button-bouncy {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 25%;
    background: transparent;
    border: none;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.normal-button-bouncy::before {
    content: "";
    position: absolute;
    transform: rotateZ(45deg);
    width: 90%;
    height: 90%;
    border-radius: 25%;
    background-color: rgba(252, 223, 255, 0.75);
    opacity: 0;
}

.normal-button-bouncy:hover::before {
    opacity: 1;
}

.normal-button-bouncy svg {
    z-index: 1;
    width: 70%;
    height: 70%;
    position: relative;
    fill: currentColor;
    color: #441036;
}

.normal-button-bouncy .label {
    position: absolute;
    z-index: 1;
    bottom: -2.5em;
    pointer-events: none;
    font-size: 0.9em;
    font-weight: 900;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: rgb(116, 7, 92);
    padding: 0.4em 0.8em;
    border-radius: 0.4em;
    opacity: 0;
}

.normal-button-bouncy:hover .label {
    opacity: 1;
}