.footer {
  background-color: transparent;
  position: absolute;
  z-index: 100;
  width:100%;
  bottom: -2.5vw;
  background-color: black;
}

.footer-links {
  padding: 1vw 10vw 1vw 10vw;
}

.footer-link {
  color: #fff;
  font-size: 1vw;
  font-weight: 400;
  text-decoration: none;
  margin-right: 2vw;
}

.footer-link:nth-child(2) {
  color: rgb(171, 171, 171);
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-link {
    font-size: 20px;
  }

  .footer {
    bottom: -7vh;
  }

  .footer-links {
    padding: 20px;
  }
}