.container {
    position: relative;
    background-color: var(--black);
}

.container:nth-child(2n) {
    background-color: var(--grey);
}

.container:has( > svg ) {
    padding-bottom: 12.5vw;
}

.container:nth-child(2n+1):has( > svg ) {
    padding-bottom: 20vw;
}

.container > svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    fill: var(--grey);
}

.container:nth-child(2n) > svg {
    fill: var(--black);
}