/* DOCUMENT STYLING */
body {
    font-family: -apple-system;
    font-size: 1.2rem;
}
h1 {
    display: none;
}
h2 {
    font-weight: 500;
    margin-top: 1em;
    margin-bottom: 0.25em;
}
p {
    margin-top: 0;
    margin-bottom: 0.2em;
}

/* LINK STYLING */
a:link {
    color: darkorange;
    text-decoration: none
}
a:visited {
    color: orange;
}

/* TABLE STYLING */
table {
    border-collapse: collapse;
    width: 100%;
}
th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
/*    border-bottom: 1px solid lightgray;*/
}
/* Targets only table body rows to avoid affecting the header */
tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
/* Changes header background color separately */
thead th {
    background-color: darkorange;
    color: white;
}
