.adh-footer {
  background-color: var(--container-background) !important;
  border-top: 1px solid var(--border);
  height: 85px;
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
  transition: background-color 1s;
  z-index: 1000;
}

.adh-footer-link {
  font-size: 20px;
  color: var(--primary-text-color);
  opacity: 0.9;
  text-decoration: none;
  transition: color 1s;
}

.adh-footer-link:hover {
  color: var(--elements-accent);
  transition: color 1s;
  cursor: pointer;
}

