
footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 2000px;
    justify-self: center;
  }
  
  footer .accounts {
    width: 25%;
    align-self: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  footer .accounts a img {
    width: 40px;
    filter: invert(40%);
    transition: all 0.5s;
  }
  
  footer .accounts a img:hover {
    filter: invert(92%);
    transition: all 0.5s;
  }
  
  footer p {
    margin-bottom: 100px;
    font-weight: 300;
    align-self: center;
    width: 700px;
    margin-top: 50px;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    color: #999999;
  }

  /* # Laptops Styles Size */
@media only screen and (max-width: 1100px) {

    footer {
        display: flex;
        flex-direction: column;
      }
    
      footer .accounts {
        width: 40%;
        align-self: center;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    
      footer .accounts a img {
        width: 40px;
        filter: invert(40%);
        transition: all 0.5s;
      }
    
      footer .accounts a img:hover {
        filter: invert(92%);
        transition: all 0.5s;
      }
    
      footer p {
        margin-bottom: 100px;
        font-weight: 300;
        align-self: center;
        width: 600px;
        margin-top: 50px;
        text-align: center;
        font-size: 20px;
        line-height: 30px;
        color: #999999;
      }    
}

/* # Tablets Styles Size  200% */
@media only screen and (max-width: 768px) {

  footer .accounts {
      width: 70%;
    }
  
    footer .accounts a img {
      margin-top: 50px;
      width: 40px;
    }
  
    footer p {
      width: 80%;
      font-size: 22px;
    }    
}

/* # Tablets Styles Size  200% */
@media only screen and (max-width: 600px) {

    footer {
        padding: 20px;
        /* background-color: red; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
    
      footer .accounts {
        margin-top: 35px;
        width: 70%;
      }
    
      footer .accounts a img {
        width: 30px;
      }
    
      footer p {
        margin-bottom: 100px;
        font-weight: 300;
        align-self: center;
        width: 90%;
        margin-top: 35px;
        text-align: center;
        font-size: 12px;
        line-height: 20px;
        color: #999999;
      }
}

