@media only screen and (max-width: 600px) {
  .footer {
    background: #2c2a2a;
    padding: 24px;
    display: flex;
    width: 100%;
    position: absolute;
    bottom: 0px;
    z-index: 10px;
    justify-content: space-between;
    align-items: center;
  }
  .footer-links {
    display: flex;
    font-size: 10px;
    color: gray;
    align-items: center;
  }

  .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    margin-left: 32px;
  }
  .footer-social {
    display: flex;
  }
}

@media only screen and (min-width: 601px) {
  .footer {
    background: #2c2a2a;
    padding: 24px;
    display: flex;
    width: 100vw;
    position: absolute;
    bottom: 0px;
    z-index: 10px;
    justify-content: space-between;
    align-items: center;
  }
  .footer-links {
    display: flex;
    font-size: 15px;
    color: gray;
    align-items: center;
  }
  .footer-links p {
    margin-left: 100px;
  }
  .footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    margin-left: 32px;
  }
  .footer-social {
    display: flex;
  }
}
