.blob-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #88FC4D;
    border: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 145px;
    height: 145px;
    line-height: 115px;
    text-align: center;
}

.blob-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 40%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%) scale(0);
}

.blob-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.blob-button:hover {
    background-color: #9563FC;
}

/* Different positioning for each button */
.position-top {
    position: absolute;
    top: 10%;   /* Adjust the top position */
    left: 50%;
    transform: translateX(-50%);
}

.position-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.position-bottom {
    position: absolute;
    bottom: 10%; /* Adjust the bottom position */
    left: 50%;
    transform: translateX(-50%);
}
