a {
  text-decoration: none;
  color: inherit;
}
.footer {
  padding: 20px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-align: center;
  font-family: Aboreto;
}
.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.footer__logo {
  max-width: 100px;
  margin-bottom: 10px;
  display: unset;
}
.footer__links {
  list-style: none;
  padding: 0;
}
.footer__links li {
  margin-bottom: 5px;
}
.footer__links a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: color 0.3s;
}
.footer__links a:hover {
  color: var(--accent-color);
}
.footer__section p {
  margin: 5px 0;
}
@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    margin: auto;
  }
  .footer__section {
    flex: 1;
  }
}
