footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  font-family: "Nunito", sans-serif;

  padding: 1rem 1rem 2rem;
  font-size: 0.75rem;
  background-color: var(--gray-600);
}

footer .logo-column img {
  width: 15rem;
  max-width: 100%;
  margin-right: 4rem;
  box-sizing: border-box;
}

footer .links-column {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  gap: 1.5rem;
  width: 60%;
}

footer .links-column .social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

footer .social a {
  font-size: 1.5rem;
}

footer .social a + a {
  margin-left: 0.5rem;
}

footer .links-column h2 {
  margin-bottom: 0.25rem;
  color: var(--white);
  user-select: none;
}

footer .links-column a {
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

footer .links-column a:hover {
  color: var(--orange-300);
}

@media (max-width: 768px) {
  footer {
    padding: 1rem 1.5rem;
  }

  footer .links-column .column:not(.social) {
    display: none;
  }

  footer .links-column .social {
    margin-left: auto;
    margin-right: 1rem;
  }

  footer .links-column .social a {
    font-size: 2rem;
  }

  footer .links-column .social a + a {
    margin-left: 0.75rem;
  }
}
