How do fill up vertical remaining space?
For display: flex elements, using flex: 1 fills up remaining horizontal space. I used this to make each card the same width. Similarly, using grid and fr units can achieve the same result. However, using flex, how could I take up the remaining height for each card of the container?

