footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem 3%;
  background: linear-gradient(transparent, var(--footer-color));
  color: white;
  box-sizing: border-box;
  user-select: none;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-copyright {
  height: 0.95rem;
  width: auto;
}

.footer-left span {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.12rem;
}

.footer-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.875rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  transition: transform 0.3s ease
}

.footer-social-link:hover {
  transform: scale(1.05);
}

.footer-social-link img {
  width: 2rem;
  height: 2rem;
}

.footer-divider {
  width: 2px;
  height: 1.2rem;
  background-color: var(--divider);
  margin: 0 0.3rem;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 0.5rem 0.12rem 0;
}

.footer-link:hover {
  color: var(--footer-text);
}

.footer-copyright-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}


@media (max-width:900px) {
  .footer-content {
    flex-direction: column;
  }
  .footer-right {
    margin-top: 1rem;
  }
}

@media (max-width:680px) {
  .footer-left {
    text-align: left;
    flex-direction: column;
  }
  .footer-divider {
    display: none;
  }
  .footer-copyright-div {
    margin-bottom: 0.5rem;
  }
}