* {
  margin: 0;
  padding: 0;
  border: none;
  font-family: Segoe UI;
}

body {
  font-size: 14px;
  height: 100vh;
  background-image: url("images/UHM-FOOTER.jpg"); /* Replace with your image path */
  background-size: cover; /* This is the key property */
  background-position: bottom; /* Center the image on the screen */
  background-repeat: no-repeat; /* Prevent tiling if the image is smaller than the screen */
  background-size: 100vw; /* Make the body take up the full viewport height */
}
  
}