footer {
  background-color: var(--primary);
}
.footer_main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--color-fade);
}
.footer_left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.version {
  font-style: italic;
}
.footer_gpg {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--color);
  background-color: var(--background);
  padding: 5px 10px 5px 5px;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.footer_gpg_gradient > svg {
  width: 20px;
  height: 20px;
}
.footer_gpg_gradient {
  /* background: linear-gradient( */
  /*   to right bottom, */
  /*   var(--gradient-one), */
  /*   var(--gradient-two) */
  /* ); */
  background: linear-gradient(to right bottom, #252525, #7c7a7a);
  display: flex;
  padding: 5px;
  border-radius: 10px;
  color: var(--background);
}
.footer_right {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer_right > a {
  text-decoration: none;
  color: var(--color);
}

.footer_gpg .tooltip {
  visibility: hidden;
  opacity: 0;
  background-color: #111;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 10;
  transition: opacity 0.2s ease;
  font-size: 0.875rem;
  pointer-events: none;
}

.footer_gpg .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #111 transparent transparent transparent;
}

.footer_gpg:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 960px) {
  .footer_main {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .footer_left {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .dot {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .footer_right {
    flex-direction: column;
  }
  .footer_slash {
    display: none;
  }
}
