footer {
  background: #000;

  .container {
    flex-direction: row;
    height: 50px;
    width: 100%;
    max-width: 950px;
    padding: 30px;
    justify-content: space-between;
  }

  @media (max-width: 1050px) {
    .container {
      max-width: 700px;
    }
  }

  .footer-container {
    height: 100%;
    gap: 15px;
  }

  @media (max-width: 1050px) {
    .footer-container {
      gap: 4px;
    }
  }
  p {
    color: #fff;
  }

  .img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 100%;

    img {
      width: 20px;
      height: 20px;
    }
  }
}
