.button {
    color: #18181b;
    text-decoration: none;


    display: inline-block;
    box-shadow: 0 0 0.5em rgba(0,0,0,0.3);
    background: linear-gradient(125deg,rgba(103, 81, 252, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    background-color: #c0b6ff;
    padding: 0.3em 0.6em;
    border-radius: 1em;
    text-align: center;
    max-height: fit-content;
    max-width: fit-content;

    transition: background-color 0.1s ease, color 0.1s ease;
}

.button:hover {
    background: linear-gradient(125deg,rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    background-color: rgb(103, 81, 252);
    color: #fcfdfd;
}

.button:focus {
    background: linear-gradient(125deg,rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    background-color: #736c75;
    color: #fcfdfd;
    box-shadow: 0 0 0.5em rgba(0,0,0,0);
}