.notify{
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--width-tight);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.2rem 2rem;
    min-height: 4rem;
    border-radius: 8px;
    background-color: var(--color-bg);
    color: var(--color-fg);
    box-shadow: 0 10px 28px 0 rgba(0,0,0,.2);
    transition: all 0.5s;
    z-index: 4999;
}

div[data-notify]{
    display: none;
}

.notify *{
    margin: 0;
}

.notify a{
    color: inherit;
    text-decoration: underline;
}

.notify__done{
    position: absolute;
    top: 5px;
    right: 5px;
    opacity: 0.8;
    color: inherit;
    cursor: pointer;
}

.notify--destroy{
    opacity: 0;
    transform: translateY(50vh);
}