.table {
    font-family: sans-serif;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
.table td {
    border: 1px solid black;
    text-align: left;
    padding: 8px;

  }

.table th {
    border: 1px solid black;
    background-color: rgb(169, 169, 222);
    text-align: center;
    padding: 8px;
  }
  
.table tr:nth-child(even) {
    background-color: whitesmoke;
  }

.table tr:nth-child(odd) {
    background-color: rgb(175, 237, 201);
  }

.table-container {
    display: flex;
    justify-content: center;
    align-items: center;
}