footer {
  background-color: var(--dark-grey);
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 0;
  gap: 15px;
}
.footer-wrapper .copyright {
  font-size: 12px;
  color: white;
  filter: brightness(0.7);
  font-weight: 300;
  margin-left: auto;
}
.footer-wrapper a {
  text-decoration: none;
  color: white;
  filter: brightness(0.7);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .footer-wrapper a {
    font-size: 16px;
    line-height: 20px;
  }
  .footer-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 0;
    gap: 15px;
  }
}
@media (min-width: 1024px) {
  .footer-wrapper a {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}
