.footer {
    margin-top: 30px;
    font-family: sans-serif;
    width: 100%;
    height: 90px;
    background-color: #848484;
    border: 1px solid lightgrey;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:  center;
  }
  .footer-ul {
    width: 100%;
    max-width: 780px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
	  list-style-type: none;
  }
  .footer-ul > li > a {
    color: black;
    font-size: 17px;
    text-decoration: none;
  }
  .footer-ul > li > a:hover{
    color: white;
  }
  @media screen and (max-width: 800px) {
    .footer {
      height: auto;
    }
   .footer-ul {
      margin: 15px 0;
      flex-direction: column;
      align-items: flex-start;
      padding: 0;
    }
    .footer-ul > li {
      padding-left: 40px;
    }
    .footer-ul > li > a  {
      display: block;
      font-size: 18px;
      line-height: 1.25;
    }
    .footer-ul > li > a {
      padding: 5px;
    }
    }
    @media screen and (max-width: 340px) {
      .footer-ul > li {
        padding-left: 20px;
      }
    }
