body {
    font-family: 'Poppins', sans-serif;
}
h1 {
    color: brown;
}
table {
    border-collapse: collapse;
    width: 100%;
  }
  
  th, td {
    border: 1px solid #000; /* You can change the color by replacing #000 with your preferred color code */
    padding: 8px;
    text-align: left;
  }
  
  tr:nth-child(even) {
    background-color: #f2f2f2; /* Optional: Alternate row color */
  }
  
  th {
    background-color: #86691364;
    color: white;
  }