#footer {
  position: fixed;
  bottom: 0;
  left: 12.5%;
  width: 75%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 10px 10px;
  background: none;
}

#footer a::before,
#footer a::after {
  content: "";
}

.footer-item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-item a:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 800px) {
  #footer {
    position: absolute;
    top: 10px;
    left: revert;
    right: 0;
    width: fit-content;
    height: fit-content;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
    white-space: nowrap;
    overflow-x: hidden;
    font-size: 24px;
  }

  .footer-item-text {
    display: none;
  }
}
