.footer {
  font-family: var(--font-family-jost);
  font-size: var(--font-size-base-text);

  color: white;
  background-color: var(--theme-color);
}

.footer a {
  text-decoration: none;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-reach-out,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-message {
  font-family: var(--font-family-playfair);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;

  text-align: center;
}

.footer-button-link {
  color: var(--theme-color);
  background-color: white;
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  align-items: center;

  font-weight: 200;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

@media (min-width: 1000px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-around;
  }

  .footer-contact {
    padding-top: 0.6rem;
    gap: 1.3rem;
  }
}
