body.notif {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
}

body.notif header {
    width: 100%;
}

#notif-content {
    width: 100%;
    margin-inline: auto;
    max-width: var(--page-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    text-align: center;
    padding: 50px 0;
}

#notif-logo {
    margin-bottom: 25px;
}

#notif-text:empty,
#notif-caption:empty,
#notif-buttons:empty {
    display: none;
}
