footer {
  width: 100%;
  background-color: black;
  padding: 10px 5px;
  box-sizing: border-box;
}
@media only screen and (min-width: 500px) {
  footer {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 1430px) {
  footer {
    padding: 30px 100px;
  }
}
footer h6 a {
  text-decoration: none;
  color: white;
}
footer .footer-top {
  display: flex;
  justify-content: space-between;
  padding: 5px;
}
footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 5px;
}
footer .footer-bottom span {
  display: none;
}
@media only screen and (min-width: 768px) {
  footer .footer-bottom span {
    display: inline-flex;
  }
}
