Hello everyone, I am new to the world of web development and currently working on creating my own website. However, I have run into a problem with the footer that I just can't seem to solve. I am using Bootstrap for styling, which I thought was great, but now I am facing an issue. When I "ZOOM IN" or resize the page to the iPad Pro dimensions, my content is overlapping with the footer and it's causing quite a scary sight. I've scoured the entire internet looking for a solution, but unfortunately, I haven't been able to find one yet. Can anyone please lend me a helping hand?
body {
font-family: 'Poppins', sans-serif;
}
... (CSS code continues) ...
<!DOCTYPE html>
<html lang="en">
<head>
... (HTML head section contents go here) ...
</head>
<body>
<nav class="navbar navbar-expand-lg justify-content-end">
... (Navbar content and links go here) ...
</nav>
<div class="container full-height content">
{% block content %}{% endblock %}
</div>
<footer class="site-footer mb-5">
... (Footer content and links go here) ...
</footer>
</body>
</html>