I have successfully implemented a full page video background on the homepage of my website. However, I am facing an issue where the "About" section is stuck at the top of the site and I cannot seem to figure out why. I want the video background to remain fixed and cover the entire site, along with a sidebar that displays menu options. Something seems off with the positioning of these elements.
/* Your CSS code here */
<script src="your/script/source.js"></script>
<section class="showcase">
<header>
<div class="logo-container">
<a href="#"><img class="logo" src="/images/logo.png" alt=""></a>
</div>
<div class="toggle"></div>
</header>
<div class="overlay"></div>
<video src="/your/video/source.mp4" muted loop autoplay></video>
<div class="text">
<h2>Your Heading Here</h2>
</div>
<div class="images">
<div class="image1">
<img src="/images/image1.jpg" alt="">
</div>
<!-- Add more image divs as needed -->
</div>
<ul class="social">
<li class="social-icon"><i class="fab fa-facebook-f"></i></li>
<li class="social-icon"><i class="fab fa-instagram"></i></li>
</ul>
<div class="contact-container">
<a class="cool-link" href="#">Contact</a>
</div>
<!-- Scroll arrow -->
<a class="scroll-down-arrow" data-iconfont="<Your Icon Font Library>" data-icon=""></a>
</section>
<div class="menu">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Product</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<section id="about">
<h1>About Us</h1>
<p>
Brief description about your company or website.
</p>
<h2>Follow Us On Social Media</h2>
<div class="social">
<a href="#" target="_blank"><i class="fab fa-twitter fa-3x"></i></a>
<a href="#" target="_blank"><i class="fab fa-facebook fa-3x"></i></a>
<a href="#" target="_blank"><i class="fab fa-github fa-3x"></i></a>
<a href="#" target="_blank"><i class="fab fa-linkedin fa-3x"></i></a>
</div>
</section>
If anyone can provide insights into what might be causing this issue, I would greatly appreciate it!