.my-add
{
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-bottom: 50px;
    gap: 25px;

    opacity: 0;
    animation-duration: 1000ms;
    animation-fill-mode: forwards;
}

.my-add h1
{
    color: #D3DAD9;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.my-add button
{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border: none;
    border-radius: 1000px;
    cursor: pointer;
    background-color: #D3DAD9;
    position: relative;
    transition: 200ms;
}
.my-add button a
{
    width: 100%;
    height: 100%;
    padding: 20px;
}


.my-add button::before
{
    content: '';
    position: absolute;
    height: 117%;
    width: 107%;
    border-radius: 1000px;
    background-image: linear-gradient(to bottom right ,cornflowerblue ,purple);
    z-index: -1;
}

.my-add button:hover
{
    z-index: 0;
    background-color: transparent;
    box-shadow: 40px 0 100px cornflowerblue, -40px 0 100px purple;
    color: #D3DAD9;
}
