My footer sticks to the bottom of the page as I want it to, but as soon as there is enough content on the page to reach the footer, it overlaps said content. I've tried using a position of fixed and relative but neither have worked as I would like. I've also tried the other solutions presented on StackOverFlow but nothing's worked so far. Here's my code.
P.S. I'm not very experienced with HTML and CSS, so if I miss something obvious I apologize.
<div>
<footer>
<p class="footer">© 2018 The Chipotle Bandits. All rights reserved.</p>
</footer>
</div>
.footer {
color: white;
text-align: center;
font-size: 12px;
position: absolute;
bottom: 0;
width: 100%;
flex: 0 0 50px;
}