.footer {
  font-size: 1rem;
  background-color: #111111;
  color: white;
}

.footer__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 2rem 0;
}

.footer__logo img {
  width: 6rem;
  height: auto;
}

.footer__content-list {
  display: flex;
  flex-direction: row;
  gap: 1rem;

  list-style: none;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.footer__content-list li a {
  color: var(--secondary-color);
  text-decoration: none;
}

.footer__privacy {
  text-align: center;
  justify-content: center;
}

@media (max-width: 890px) {
  .footer__content {
    font-size: 1.2rem;
  }
}
