.buttons {
    /* margin-top: 50px; */
    text-align: center;
    border-radius: 30px;
}

.blob-btn {
    z-index: 1;
    position: relative;
    padding: 16px 40px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    background-color: transparent;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

a.blob-btn {
    text-decoration: none;
}

.blob-btn:before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* border: 1px solid ; */
    border-radius: 30px;
    transition: border-color 0.5s ease 0.5s;
}

.blob-btn:after {
    content: "";
    z-index: -2;
    position: absolute;
    left: 1.5px;
    top: 1.5px;
    width: 100%;
    height: 100%;
    /* transition: all  0.02s; */
    border-radius: 30px;
}

.blob-btn:hover:before {
    transition: border-color 0.3s ease 0.3s;
}

.blob-btn:hover:after {
    /* transition: all 0.3s; */
    left: 0;
    top: 0;
    border-radius: 30px;
}

.blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url("#goo");
}

.blob-btn__blob {
    position: absolute;
    top: 1px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: transform 0.5s;
}

.blob-btn__blob:nth-child(1) {
    left: 0;
    transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
    left: 0;
    transition-delay: 0.1s;
}

.blob-btn__blob:nth-child(3) {
    left: 0;
    transition-delay: 0.2s;
}

.blob-btn__blob:nth-child(4) {
    left: 0;
    transition-delay: 0.3s;
}

.blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.9);
}

@supports (filter: url("#goo")) {
    .blob-btn:hover .blob-btn__blob {
        transform: translateZ(0) scale(1.4);
    }
}

