* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

#data-table-wrapper {
  max-height: calc(100vh - 150px);
  overflow-y: auto;
}

.container {
  margin-top: 6rem;
  margin-bottom: 100px;
  padding-bottom: 60px;
}

/* -- Footer -- */

footer {
    height: 120px;
    background-color: #f9f9fb;
    border-top: 4px solid #2db550;
    padding: 25px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  
  footer h2 a,
  footer h3 {
    color: #2a2a2a;
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  
  footer img {
    width: 150px;
  }
  
  footer h2 img {
    width: 40px;
  }
  
  footer ul li a,
  footer p a {
    color: #292929;
  }
  
  @media screen and (max-width: 550px) {
    footer {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 50px 0 0px 0;
    }
  
    footer > div {
      margin-bottom: 40px;
    }
  }