.notification {
    z-index: 100000000;
    position: fixed;
    left: calc(50% - 100px);
    top: 30px;
    display: flex;
    background: #fff;
    border-radius: 10px;
    padding: 20px 30px;
    align-items: center;
    font-weight: 500;
    justify-content: center;
    box-shadow: 0 0 5px 1px var(--color-lightgrey);
    transform: translateY(-300px);
    transition: transform 600ms ease-in-out;
}
.notification.active {
    transform: translateY(0px);
}