
.toast {
    margin: auto;
    z-index: 1000000;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    justify-self: center;
    gap: 1em;
    right: 0;
    text-align: center;
    height: auto;
    left: 0;
    bottom: 1rem;
    opacity: 1;
    visibility: visible;
    /* transition-property: width, height, opacity, max-width, max-height, top, left, bottom, right;
    transition-duration: 111ms;
    transition-timing-function: ease-in-out; */
}

.toast-item {
    margin: auto;
    opacity: 1;
    visibility: visible;
    /* transition: opacity 90ms ease-in-out; */
    height: auto;
    max-height: 50%;
    min-height: 3em;
    width: 95%;
    color: white;
    padding: 1rem;
    background: #336699;
    border-radius: 0.125rem;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 1);

    justify-content: center;
    justify-items: center;
    justify-self: center;
    text-align: center;
}

