I have been working on my personal website, and everything is almost complete except for one nagging issue. Whenever I shrink the screen size to less than 992px, the formatting of the skills section gets messed up, making everything unreadable. I can't figure out why this problem is specific to this section only. You can check out the website on vanshbajaj.me
.skills-section {
background-color: #1a1e23;
color: #fff;
}
// Rest of the CSS code goes here...
<section id="skills" class="skills-section section-padding">
<div class="container">
<h2 class="section-title wow">Skills</h2>
// More HTML code for skill charts and progress bars
</div>
</section>
The expected result is that when the screen size is reduced, all the skills should be displayed in a single column rather than two.