#footer {
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid lime;
  background: black;
  z-index: 9999;
}

#back-to-top {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  margin: 0 auto;
  margin-bottom: 80px;
  left: 0;
  right: 0;
  z-index: 1000;
  letter-spacing: -5px;
  font-size: 26px;
  background: black;
  border-radius: 50%;
  box-sizing: border-box;
  transition: scale 330ms ease-in-out, text-shadow 330ms ease-in-out, box-shadow 330ms ease-in-out;
}
#back-to-top span {
  transform: rotate(-90deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin-bottom: -4px;
  margin-left: -3.4px;
  width: 10px;
  height: 10px;
}
#back-to-top::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border: 2px dashed lime;
  border-radius: inherit;
  box-sizing: border-box;
}
#back-to-top:hover {
  scale: 1.1;
  box-shadow: 0 0 20px 5px lime;
  text-shadow: 0 0 5px lime, 0 0 10px lime, 0 0 15px lime, 0 0 20px lime, 0 0 25px lime, 0 0 30px lime, 0 0 35px lime;
  animation: glow-back-to-top 0.7s ease-in-out 330ms infinite alternate, glow-box-shadow 0.7s ease-in-out 330ms infinite alternate;
}
#back-to-top:hover::before {
  animation: spin 6s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotateZ(360deg);
  }
}

#footer-text {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
}

#github-anchor {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 63px;
  right: 0px;
  border-radius: 50%;
}
#github-anchor:hover #github-icon {
  transform: scale(1.2);
}

#github-icon {
  height: 35px;
  transition: all 0.2s;
}/*# sourceMappingURL=footer.css.map */