.cntr {
    /* geometria */
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100vh;

    /* centrowanie */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* eliminacja whitespace jako flex-item */
    font-size: 0;
    line-height: 0;

    /* NIE blokuj zdarzeń myszy dla particles.js */
    pointer-events: none;

    /* warstwa nad tłem */
    z-index: 1;
	}

.cntr > * {
    /* przywrócenie normalnej typografii */
    font-size: 14px;
    line-height: normal;

    /* przywrócenie interakcji */
    pointer-events: auto;
	}