#notif {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 3000;

    transform: translate(-50%, -100%);
    transition: transform 0.35s ease;

    background: #9e3b3b;
    color: #e1e1e1;
    padding: 1rem 1.5rem;
    border-radius: 999px;

    font-size: 1.2rem;

    pointer-events: none;
}

#notif.show {
    transform: translate(-50%, 2rem);
}

