footer {
  color: #fff;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  z-index: 11;
  width: 95%;
  padding: 0 10px;
  font-size: 12px;
}
footer .footer_right {
  display: flex;
  align-items: center;
}
footer .footer_right a {
  padding: 2px 8px;
}
footer .footer_right span {
  display: inline-block;
  width: 1px;
  height: 60%;
  background-color: #fff;
}

@media (max-width: 768px) {
  footer {
    width: 90%;
    flex-direction: column-reverse;
    text-align: center;
    gap: 10px;
  }
  footer .footer_right {
    justify-content: start;
  }
  footer .footer_right a:nth-of-type(1) {
    padding-left: 0;
  }
  footer .copylight {
    text-align: left;
  }
}
