* {
  margin: 0;
  box-sizing: border-box;
}

.grid-container {
  display: grid;
  grid-template-areas:
    'main'
    'footer';
    gap: 10px;
    padding: 10px;
}


.grid-container > div {
  padding: 10px;
  font-size: normal;
}

body {
    font-family: "Courier Prime", monospace;
    font-style: normal;
    background-color: #ffffff;
    color: #000000;
}
p,td {
    font-size: max(1.6vw, 16px);
    line-height: 1.5;
}

h1,h2,h3,h4,h5,h6 {
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: max(2.4vw, 24px);
}

a:link{
    color: #0000ff;
    text-decoration: none;
}
a:visited {
    color: #0000ff;
}
a:hover {
    color: #0000ff;
    text-decoration: underline;
}
a:active {
    color: #0000ff;
    text-decoration: underline;
}

table {
    width: 100%;
}
table, th, td {
    border: 2px solid #000000;
    border-collapse: collapse;
}
th {
    font-size: max(1.8vw, 18px);
    padding: 8px;
}
td {
    padding: 8px;
}

.top {
    grid-area: main;
    text-align: top;
    text-align: left;
}
.bottom {
    grid-area: footer;
    text-align: right;
}
