:root {
  --background-121212: #121212;
  --background-8e8e8e: #8e8e8e;
}
footer {
  padding: 1.875rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-inner::after {
  content: "© 2025 Ramin Karamli. All right Reserved.";
  position: absolute;
  text-transform: none;
  bottom: -2.5rem;
  padding: 0.625rem;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--background-8e8e8e);
  font-weight: 300;
  font-size: clamp(1px, 3vw, 16px);
  letter-spacing: 0.03em;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 550px) {
  .footer-inner {
    justify-content: center !important;
    flex-direction: column !important;
    gap: 0.625rem;
  }
  .social-icons {
    justify-content: center !important;
    flex-direction: column !important;
  }
  .footer-item h1 {
    text-align: center;
  }
}
footer a {
  color: #121212 !important;
  text-decoration: none !important;
  display: inline-block !important;
  overflow: hidden !important;
  text-shadow: 0 1.1em 0 var(--background-121212) !important;
  line-height: 0.9 !important;
  position: relative !important;
  z-index: 8;
}
footer a span {
  display: inline-block !important;
  transition: transform 0.45s cubic-bezier(0.2, 0, 0.4, 1) !important;
  transition-delay: calc(var(--i) * 25ms) !important;
}
footer a:hover span {
  transform: translateY(-1.1em) !important;
}
