/* Resetting margin and padding for HTML and Body */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  width: 100%;
}

ul {
  list-style: none;
  padding: 0;
  text-align: center; /* Centering the list */
}

li {
  display: inline-block;
  margin: 0 15px; /* Add margin to separate the links */
}

li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

p {
  margin: 10px 0 0;
  font-size: 14px;
}

/* Hover Styles */
li a:hover {
  text-decoration: underline;
}