body {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}
h1, h2 {
    color: #005ba1;
}
.content {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f1f1e6;
    width: 90%;
    height: fit-content;
}
table {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
    background-color: #f1f1e6;
}
th, td {
    border: 1px solid #707788;
    padding: 5px;
    color: #707788;
}
.table-wrapper {
    overflow: auto;
}
.button {
    display: inline-block;
    padding: 10px;
    filter: brightness(100%);
    background-color: #005ba1;
    font-size: 13px;
    font-weight: bold;
    color: #f1f1e6;
    text-align-last: center;
    text-decoration: none;
    transition: filter 0.5s, scale 0.5s;
}
.button:hover {
    scale: 1.01;
    filter: brightness(110%);
    transition: filter 0.5s, scale 0.5s;
}
/* body {
    image-rendering: pixelated;     -> All Pixels are displayed in their true form.
} */