.footer {
  background-color: #ed2399;
  color: white;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  border-top: 1px solid #333;
  width: 90%;
  display: flex;
  justify-content: space-around;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 40px;
}

.footer-content {
  max-width: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-content p {
  margin: 0;
  font-size: 16px;
}

.footer-heart {
  color: white;
}

.made-with-love {
  color: #fff;
}

.ctrlb {
  font-weight: 600;
  color: white;
}

.copyright {
  color: white;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 767px) {
  .footer {
    margin-top: -20px;
  }
}

@media (max-width: 480px) {
  /* .footer {
    padding: 20px 0;
  }
    

  .footer-content {
    padding: 0 15px;
  } */

  .footer-content p {
    font-size: 14px;
  }
}
