I'm facing an issue where my footer has extra space at the end which is also in the background color of the page. How can I resolve this?
footer {
text-align: center;
background-color: orange;
margin-bottom: -200px;
height: 5em;
}
.contact {
padding: 0px;
}
.contact a {
color: black;
margin-top: 30px;
}
<footer>
<div class="container contact">
<div class="row">
<div class="col-md-12 align self-center">
<p> Created with ❤ by Team PitchTeen </p>
<a class="contact-link" href="mailto:<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="295d4c484459405d4a415d5e5878434044578249404257884549">[email protected]</a>"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="c2b6a7a3afb2abb6a1abbaadb29fa1beaaa8bba1eca7aba9">[email protected]</a></a>
</div>
</div>
</div>
</footer>