I don't understand why my footer is sitting slightly above the bottom of my webpage and not directly on the bottom
h6 {
  font-family: Neue Haas Grotesk, sans-serif;
  font-weight: 300;
  font-size: 1.4vw;
  color: white;
  position: relative;
  display: block;
}
.footer {
  position: relative;
  display: inline;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 0;
}
<div class="footer">
  <h6>© Alex Burger. All rights reserved<br>Further information can be requested through email.</h6>
</div>
