footer {
    height: max(192px, calc((1280px - 100vw) / 1.5), calc((720px - 100vw) / 1));
    width: min(calc(100% - 66px), calc(1280px - 264px));
    margin-left: max(1px, calc((100% - 1280px + 200px) / 2));
    background: url("https://iili.io/dY0Eas4.jpg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #272729;
    margin-top: 32px;
    border-radius: 48px 48px 0 0;
    box-shadow: 0px -12px 20px 8px rgba(0,0,0,0.3);
    padding: 32px;
    display: flex;
    font-family: Minecraft;
    cursor: default;
}

.footer-about {
  width: 50%;
  text-align: center;
}

.footer-separator {
  height: 1px;
  width: 80%;
  margin: 24px 10%;
  background: linear-gradient(359deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%);
}

.footer-links {
  font-size: 120%;
  width: 20%;
  margin-top: 16px;
  margin-left: 6vw;
}

.footer-links a:visited {
  color: white;
}

.footer-links a:hover {
  text-decoration: underline;
  cursor: pointer;
}

.footer-information {
  width: 25%;
  font-size: 120%;
}

.footer-version {
  text-align: center;
  font-size: 24px;
  margin-top: 64px;
}

footer p,
footer h2,
footer a {
  text-shadow: 2px 2px 0 black, 0 0 16px black;
  color: white;
  text-decoration: none;
}

footer p::selection,
footer h2::selection,
footer a::selection {
  background: rgba(173, 216, 230, 0.1);
}

@media (max-width: 480px) {
  .footer-about {
    width: 35%;
    font-size: 13px;
  }

  .footer-links {
    width: 30%;
  }

  .footer-information {
    width: 35%;
  }
}

@media (max-width: 360px) {
  .footer-about {
    font-size: 12px;
  }

  .footer-links {
    font-size: 16px;
  }

  .footer-information {
    font-size: 16px;
  }
}

@media (max-width: 320px) {
  .footer-about {
    font-size: 10px;
  }

  .footer-links {
    font-size: 14px;
  }

  .footer-information {
    font-size: 14px;
  }
}

@media (max-width: 280px) {
  .footer-about {
    width: 55%;
    font-size: 13px;
  }

  .footer-links {
    width: 45%;
    font-size: 20px;
  }

  .footer-information {
    display: none;
  }
}

@media (max-width: 220px) {
  .footer-about {
    display: none;
  }

  .footer-links {
    width: 100%;
    font-size: 26px;
    text-align: center;
  }

  footer {
    height: 200px;
  }
}