/*
* 	BIG Jelly Button
*		Original source from Mathias Adam:
*				- https://dribbble.com/shots/6209185-BIG-Jelly-Button
*
*		I tried to stay as true to the original source as possible.
*		Unforutunately there were a few effects I couldn't make
*		happen with CSS. Primarily the suble noise texture. I
*		considered using a base64 encoded noise pattern overlay but
*		I felt like that was cheating. I also couldn't do the
*		true bevel effect on the label since CSS doesn't have an
*		inset text shadow option.
*/


button {
    margin-top: 4px;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 9.5rem;
    border-radius: 3.75rem;
    line-height: 2.5rem;
    font-size: 2rem;
    font-weight: 600;
    border: 0px solid #012880;
    background-image: linear-gradient(black, #969292);
    color: white;
    box-shadow: 0px 4px 0px #707070;
}
button:hover {
    margin-top: 4px;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 9.5rem;
    border-radius: 3.75rem;
    line-height: 2.5rem;
    font-size: 2rem;
    font-weight: 600;
    border: 0px solid #012880;
    background-image: linear-gradient(black, #787575);
    color: white;
    box-shadow: 0px 4px 0px #707070;
}

button span {
    color: transparent;
    background-image: linear-gradient(0deg, #ffffff 26%, #0077ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 2px 2px hsla(290, 100%, 20%, 1));
}



.list{
    padding-inline-start: 5px;
}