Currently, I am working on creating a survey form page. I have successfully created a div with the id "container" which holds all the elements on my site. For the code snippet and reference, you can check out this link
CODE
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
color: #black;
background-color: #202020;
}
#container {
height: 100%;
max-width: 650px;
margin: 0 auto;
background-color: #fff;
}
<div id="container">
<header id="title">
<h1>Software World</h1>
<p id="Description">Entertainment which creates software for people</p>
</header>
... (survey form HTML code here) ...
</div>
I am facing an issue where the container does not take the full height of the webpage as expected. You can see the problem in this picture
I aim to have the container always fill the entirety of the website's height, even when it is in fullscreen mode. It should consistently maintain its full height regardless of the screen size.
enter code here