/* Resetting default margin and padding */
body, h1 {
    margin: 0;
    padding: 0;
}

/* Centering the container */
.container {
    width: 80%; /* Adjust as needed */
    margin: 0 auto;
    text-align: center;
}

/* Styling the heading */
h1 {
    font-size: 2em;
    color: #202020; /* Adjust color as needed */
    margin-top: 20px; /* Adding some spacing above the heading */
    font-family: Arial, sans-serif;
}

/* Styling the content */
h2 {
    font-family: Arial, sans-serif;
    font-size: 1.4em;
    color: #202020; /* Adjust color as needed */
}

/* Styling the content */
p {
    font-family: Arial, sans-serif;
}


table, th, td {
    border: 1px solid black;
    border-collapse:collapse;
    font-family: Arial, sans-serif;
    margin-left: auto;
    margin-right: auto;
}


th {
    background-color: rgb(1, 24, 69); /* Set background color of regular cells */
    color: rgb(255, 255, 255); /* Set font color of regular cells */
    padding: 10px; /* Add some padding to cells for better readability */
}

td {
    background-color: rgb(255, 255, 255); /* Set background color of regular cells */
    color: black; /* Set font color of regular cells */
    padding: 10px; /* Add some padding to cells for better readability */
}