h2 {
    text-align: center;
    font-size: 45px;
}

table {
    margin: 20px auto;
    width: 80%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    max-width: 400px; /* Set the maximum width to 100px */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
th:first-child,
td:first-child,
th:last-child,
td:last-child {
    width: 25px; /* Set the width of the first and last columns to 25px */
}
th {
    background-color: #333;
}



tbody tr:nth-child(even) {
    background-color: #333;
}

tbody tr:nth-child(odd) {
    background-color: #444;
}
