/* Set cyan background for the entire page */
body {
    background-color: cyan;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Center vertically and display "Table Contents" above the table */
    height: 100vh;
}

/* Center the "Table Contents" text */
h1 {
    text-align: center;
    margin-bottom: 20px; /* Add some spacing below the heading */
}

/* Style the table */
table {
    background-color: white;
    border: 4px solid orange; /* Increase the border thickness */
    border-collapse: collapse;
    width: 100%;
}

/* Style the table headers */
th {
    background-color: #FFA500; /* Set a slightly darker orange background for the first row */
    border: 2px solid orange;
    padding: 10px;
    font-weight: bold;
    text-align: center;
}

/* Style the table cells */
td {
    border: 2px solid orange;
    padding: 10px;
    text-align: center;
}
