.box-text-content {
    grid-template-rows: repeat(5, 1fr);
}

.text-content:nth-child(2n + 2) {
    background-color: var(--theme-dark-segundary-color);
    border-bottom: 7px solid var(--theme-dark-primary-color);
    border-right: 7px solid var(--theme-dark-primary-color);
}

.text-content:nth-child(3) {
    grid-column: 2/3;
    grid-row: 3/4;
}

.text-content:nth-child(4) {
    grid-column: 1/2;
    grid-row: 4/5;
}

.text-content:nth-child(5) {
    grid-column: 2/3;
    grid-row: 5/6;
}

/*:nth-child(2) */