.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--gray);
  padding: 12px 8%;
  gap: 18px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-span {
  color: #A2A2A2;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 12px;
}

.footer-link {
  text-decoration: none;
  color: var(--pureWhite);
  text-transform: uppercase;
}

.spacing {
  display: none;
  color: var(--pureWhite);
}

@media screen and (min-width: 768px) {
  .footer-links {
    flex-direction: row;
  }

  .spacing {
    display: block;
  }
}

@media screen and (min-width: 1280px) {
  .footer-container {
    padding: 48px 8%;
  }
}