footer {
  padding: 1rem;
  background: #f5f5f5;
  text-align: center;
  font-size: 0.875rem;
  color: #555;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;

  background-color: #f5f5f5;
  background: linear-gradient(180deg, #1a1a1a, #000000);
  color: #555;
  color: white;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  /* background: url('../assets/bg/black-seamless.webp');
  background-size: cover;
  background-position: center; */
}

.copy,
.links {
  display: inline-block;
}

.copy {
  display: inline-block;
  padding-right: 1rem;
  border-right: 1px solid white;
}

.links a {
  color: #555;
  color: white;
  text-decoration: none;
  margin: 0 0.5rem;
}

.links a:hover,
.links a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 500px) {
  footer {
    flex-direction: column;
    gap: 0.25rem;
  }

  .copy {
    border: none;
  }

  .links a {
    margin: 0 0.25rem;
  }
}