Css noob question. How to remove vertical scroll bar?

Hi guys,

I am just beginning my project and wonder why there is a vertical scroll bar created.

Can you please look at my project?

https://shimphillip.github.io/kpop-survey/

You cam assign the body a max-height to be 100vh and set overflow to hidden

1 Like

.video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
z-index: -1;
overflow: hidden; <-- just add this
}

1 Like

Thanks for the help guys!