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

.normal-button-squish:hover {
    background-color: rgba(248, 241, 255, 0.75);
    border: 4px solid #c7a0fa;
}

.normal-button-squish svg {
    z-index: 1;
    width: 70%;
    height: 70%;
    position: relative;
    fill: #1b053a;
}

.normal-button-squish .label {
    position: absolute;
    z-index: 1;
    bottom: -3.5em;
    pointer-events: none;
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    color: #dccdff;
    background-color: #1b053a;
    padding: 0.5em 0.8em;
    border-radius: 0.4em;
    opacity: 0;
}

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

.normal-button-squish .label::before {
    content: "";
    position: absolute;
    background-color: #1b053a;
    width: 1em;
    height: 1em;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}