#img_index {
    border-radius: 10px;
    position: relative;
display: initial !important;   
 justify-self: center;
    height: 105px;
    width: 105px;
    color: #ffffff;
    box-shadow: 0px 0px 30px 0px #a1a1a1;
    box-shadow: 0px 0px 30px 0px #504f4f;
    margin-top: 4%;
    -webkit-border-radius: 150px;
    -moz-border-radius: 150px;
    -ms-border-radius: 150px;
    -o-border-radius: 150px;
}
/* From Uiverse.io by cssbuttons-io */
button {
    font-size: 17px;
    padding: 1em 2.7em;
    font-weight: 500;
    background: #1f2937;
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 0.6em;
    cursor: pointer;
}

.gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0.6em;
    margin-top: -0.25em;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.3)
    );
}

.label {
    position: relative;
    top: -1px;
}

.transition {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-duration: 500ms;
    background-color: rgba(16, 185, 129, 0.6);
    border-radius: 9999px;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

button:hover .transition {
    width: 14em;
    height: 14em;
}

button:active {
    transform: scale(0.97);
}
#button {
    font-size: 14px;
    padding: 1em 2.7em;
    font-weight: 500;
    background: linear-gradient(
        90deg,
        rgba(135, 113, 234, 1) 0%,
        rgba(125, 114, 234, 1) 19%,
        rgba(120, 119, 241, 1) 44%,
        rgba(110, 117, 233, 1) 64%,
        rgba(99, 118, 232, 1) 86%,
        rgba(2, 0, 36, 1) 135%
    );
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 0.6em;
    cursor: pointer;
}

#button:hover .transition {
    width: 17em;
    height: 17em;
}

#button:active {
    transform: scale(0.97);
}

