/* General */

body {
    /* Center content */
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1524px;
    text-align: justify;

    color: #f6f1e1;
    background-color: #550303;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.8;
}

header h1 {
    text-align: center;
}

/* Images */

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Links */

a {
    color: inherit; /* Make link color the same as normal text */
    text-decoration: none; /* Remove default underline */
    border-bottom: 1px dotted currentColor; /* Apply a dotted underline */
    font-family: sans-serif;
    line-height: 2.0;
}
  
a:hover {
    border-bottom: 1px solid currentColor; /* Change to a solid underline on hover */
}

/* Tables */

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

td {
    padding: 10px;
}