The home page of my website has 4 sections. The first section heree is just a background image with some text. However, according to your screen size, the section does not take 100% of the screen and as a consequence there is some white space at the bottom. Would it be possible to have the section .intro
take 100% of the screen space before the user scroll down?
HTML
<div class="intro">
<div class="container">
<div class="content">
<h1>Myanmar's Leading Provider of Total HR Solutions</h1>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Fugit dignissimos blanditiis veritatis quidem voluptate minus laboriosam magnam tempora dolorem repellendus!</p>
<a href="search/search.php"><button class="button-1">Candidates</button></a>
<a href="contact/employer-contact.php"><button class="button-2">Employers</button></a>
</div>
</div>
</div>
CSS
.intro .container{
background: linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.55)),url(./images/home/myanmar.jpg)no-repeat center center/cover;
padding:1.4rem;
}