.revealing-section {
    position: sticky;
    min-height: 100vh;
    --reavealing-section-overlay-opacity: 1
}

.revealing-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    background-color: var(--color-black);
    opacity: var(--reavealing-section-overlay-opacity)
}