.footer {
    color: #fff;
    text-align: center;
    padding: 10px;
    height: 100%;

    background: linear-gradient(180deg, rgba(121, 44, 44, 1) 0%, rgb(78, 54, 48) 100%);
  }

  .footer-outer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
  }

  .footer-container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-around;

  }

  .footer-item {
    min-width: 150px;
    line-height: 50px;
    text-align: center;
  }

  .footer-item a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
  }


  @media (max-width: 600px) {
    .footer-item {
      min-width: 150px;
      line-height: 40px;
    }
  }