body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #222;
    margin: 0;
    padding: 0;
}

header {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
}

/*h1 {
    font-size: 2.5rem;
    margin: 0;
} */


h1 {
    font-family: Impact, Charcoal, sans-serif;
    font-size: 2.5rem;
    margin: 0;
}


h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

main {
    max-width: 80%;
    margin: 0 auto;
    padding: 40px 0;
}

section {
    margin-bottom: 3rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 10px;
    border-bottom: 1px solid #555;
}


/* Table row hover effect for even rows */
tr:nth-child(even):hover {
    background-color: #555;
}

/* Table row hover effect for odd rows */
tr:nth-child(odd):hover {
    background-color: #666;
}


th {
    font-weight: bold;
    text-align: left;
}

/* Footer styles */
footer {
    background-color: #000;
    padding: 20px;
    text-align: left;
}

/* Footer text color */
footer {
    color: #ffffff;
}

/* Footer link color */
footer a {
    color: #add8e6;
    text-decoration: none;
}

/* Footer link color on hover */
footer a:hover {
    color: #add8e6;
    text-decoration: underline;
}

