How to make <div> take up full screen

#top-section {
 min-height: 100vh;
}

vh, being % vertical height of the view port (Viewport Height)

remove your existing height property first.

Cheers