.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 4rem 5%;
  background: rgba(43, 45, 49, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4rem;
  color: #A1A1AA;
}

.footer>* {
  flex: 1 100%;
}

.footer__addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer__addr h2 {
  margin-top: 1.3em;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.footer address {
  font-style: normal;
}

/* Restyled soft button */
.footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer__btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #fff;
}

.footer ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer li {
  line-height: 2.5em;
}

.footer a {
  text-decoration: none;
  color: #e0e0e0;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(88, 101, 242, 0.6);
}

.footer__nav {
  display: flex;
  flex-flow: row wrap;
  gap: 2rem;
}

.footer__nav>* {
  flex: 1 50%;
  margin-right: 1.25em;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  margin-top: 2rem;
}

.legal p {
  font-size: 0.9rem;
  margin: 0;
  color: #A1A1AA;
}

.legal__links {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.developer-link {
  text-decoration: underline;
  color: var(--accent-color);
  font-weight: 600;
}

.developer-link:hover {
  color: #A8B1FF;
}

.heart {
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(88, 101, 242, 0.6);
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@media screen and (min-width: 40.375em) {
  .footer__nav>* {
    flex: 1;
  }

  .footer__addr {
    flex: 1 0px;
  }

  .footer__nav {
    flex: 2 0px;
  }
}