.socialMediaBar-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.socialMediaBar {
  display: flex;
  gap: 4rem;
}

.socialMediaBar__icon {
  width: 40px;
}

#footContainer {
  padding: 4rem;
  padding-bottom: 8rem;
}

#footer {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footerLink {
  display: flex;
  gap: 1rem;
}

.footerLink>div {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

@media screen and (max-width: 768px) {
  .socialMediaBar {
    gap: 2rem;
  }

  #footContainer {
    padding: 2rem;
    padding-bottom: 6rem;
  }

  #footer {
    flex-direction: column;
  }

  .footerLink>div {
    flex: 1 auto;
  }
}