footer {
  display: flex;
  row-gap: 2rem;
  color: white;
  padding: 2rem 0;
  margin-top: 4rem;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-family: "CustomFont";
  background-color: #df5778;
}

footer .footer-content-networks {
  display: flex;
  column-gap: 1rem;

  text-decoration: none;
}

.footer-content-networks .footer-network-icon {
  width: 4rem;
  height: 4rem;
}

.footer-network-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .2s ease-in-out;
}

footer .footer-content {
  display: flex;
  row-gap: 1rem;
  flex-direction: column;
}

.footer-network-icon img:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 600px) {
  .footer-content-networks .footer-network-icon {
    width: 3rem;
    height: 3rem;
  }
}


@media screen and (max-width: 425px) {
  .footer-content-networks .footer-network-icon {
    width: 2rem;
    height: 2rem;
  }
}