*{
    padding: 0;
    margin: 0;
  }
  footer {
      background-color: black;
      color: #ffffff;
      display: flex;
      align-items: center;
      padding: 20px;
      justify-content: space-evenly;
      flex-direction: row;
      font-family: 'Poppins', sans-serif;
    }

    .links ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    #titFoot{
      font-size: 30px;
    }

    .links li {
      margin-bottom: 10px;
      margin-right: 20px;
    }

    .links a {
      color: #ffffff;
      text-decoration: none;
      font-size: 17px;
    }

    .social-icons a {
      display: flex;
      flex-direction: column;
      margin-left: 20px;
    }

    .social-icons img {
      margin-top: 20px;
      max-height: 30px;
    }
    #logo img{
      max-height: 200px;
    }

    @media only screen and (max-device-width : 480px) {
        footer {
          display: flex;
          flex-direction: column;
          text-align: center;
        }

        .social-icons{
          display: flex;
          flex-direction: row;
          align-content: center;
          margin-bottom: 30px;
          margin-right: 25px;
        }

        .links{
          margin-bottom: 15px;
        }

        .logo img{
          max-height: 150px;
        }

    }
