.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  background-color: #191919;
  color: white;
  gap: 1rem;
}
.footer-content .separator {
  color: orange;
  margin: 0 1.5rem;
}
.footer-content a {
  color: white;
  text-decoration: none;
  transition: color 200ms linear;
}
.footer-content a:hover {
  color: lightgrey;
}
