#notifs-holder{
    position: fixed;
    top: 10px;
    right: 10px;
    display: grid;
    grid-template-rows: repeat(auto-fit, minmax(50px, 1fr));
    grid-template-columns: 1fr;
    grid-gap: 10px;
    align-items: end;
    justify-items: end;
    z-index: 10;
}