.footer {
  width: 100%;
  padding: 40px 0;
  text-align: center;
  margin-top: 80px;
  animation: footerBlurIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.08s both;
  position: relative;
}

body.loading footer {
  transform: scale(0.995);
}

.footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100px;
  height: 1px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-text {
  color: var(--nav-item-color);
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 1px;
  margin: 0;
}

.footer-copyright {
  color: var(--nav-item-color);
  font-size: 14px;
  font-weight: 550;
  opacity: 0.8;
  margin: 0;
}

@keyframes footerBlurIn {
  from {
    opacity: 0;
    filter: blur(14px);
    transform: scale(0.995);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
}
