Remove blank space below product description (Debutify Theme)

Can someone please assist me with removing this big blank white space below my product descriptions?
It only shows on desktop. There is no issue on mobile.
It should just be simple code fix. Thanks!

In your theme CSS, you’d need to remove min-height: 100vh; from your #PageContainer class.

#PageContainer {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    /* min-height: 100vh; */
}