.footer-brand {
  background-color: floralwhite;
  font-family: 'Fraunces', serif;
  text-align: start;
  font-size: 1rem;
  gap: 4rem;
}

.footer-icons {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 6rem;
  width: 100%;

}
.social-media {
  display: flex;
}


.footer-text {
  background-color: floralwhite;
  display: flex;
  justify-content: center;
  font-family: "poppins", sans-serif;

}

/*phone*/

@media (max-width: 480px) {

  .footer-text {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
  }

  .footer-brand {
    text-align: center;
    font-size: 1.2rem;
  }

  .footer-icons {
    justify-content: center;
    gap: 1rem;
  }
}

.footer-icons img {
  display: flex;
  flex-direction: row;
  width: 3rem;

}

.footer-copyright {
  display: flex;
  justify-content: center;

}