You need to change the display property for the tr element. You can set it to block or flex.
tr
tr { display: flex; height: 100px; }
But this will break your table. And you will have to handle it yourself, with flexbox for example.