/* Center the entire page content */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
}

/* Ensure the footer and text in the footer are centered */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
}

footer .footer-links {
  margin-bottom: 10px;
}

footer .footer-links ul {
  list-style-type: none;
  padding: 0;
}

footer .footer-links ul li {
  display: inline-block;
  margin-right: 15px;
}

footer p {
  font-size: 14px;
  color: #888;
}
