footer {
  background: #333;
  color: white;
  padding: 2rem 0;
  margin-top: 2rem;
}

footer div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

footer p {
  text-align: center;
  margin: 0.5rem 0;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

footer ul li {
  margin: 0 10px;
}

footer a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

footer a:hover {
  color: #ddd;
}