body {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
  }

  table{
    font-size: 12px;
    width: 40%;
    margin: auto;
    border-collapse: collapse;
  }

  td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }

  th{
    text-align: center;
    border: 1px solid #dddddd;
    padding: 8px;
  }

  p {
    line-height: 1.9;
    font-weight: 400;
    font-style: normal;
  }

  h1 {
    font-size: 32px;
  }

  .header {
    border-bottom: 1px solid black;
    text-align: center;
  }
  
.container{
    display: flex;
    flex-direction: column;
    margin: auto;
}

.footerContainer {

    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 2%;
  }
  
  .footerImageContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }


  @media screen and (max-width: 800px) {
    table,
    footer,
    .container {
      width: 90%;
      font-size: small;
    }

    .footerContainer{
      margin-top: 15%;
    }
  }



