.footer {
  font-size: 0.75rem;
  position: fixed;
  bottom: 0.5rem;
  right: 0.25rem;
  display: flex;
  border-radius: 4rem;
  align-items: center;
  padding: 0.375rem 1rem;
  padding-right: 0rem;
  background-color: var(--bg);
  /* border: 2px solid var(--hover-light); */
}

.footer .namecard {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 0.5em;
  border-radius: 2em;
  margin-inline: 0.5em;
  padding: 0.25em 0.25em;
  padding-right: 1em;
  background-color: var(--hover-light);
  cursor: pointer;
}

.footer img {
  height: 2em;
  border-radius: 1em;
  border: 1px solid var(--hover-light);
}

.footer a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

/* responsive */

@media (width > 768px) {
  .footer {
    font-size: 1rem;
  }
}

/* home footer */
.home ~ .footer {
  position: static;
  margin-block: 1rem 0.5rem;
  margin-right: 0.25rem;
  justify-content: right;
}
