* {
    box-sizing: border-box;
}  

.page {
    top: 0;
    width: 100%;
    max-width: 600px;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 1em;
}

.title {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo {
    max-height: 5em;
}

.titlestack {
    display: flex;
    flex-direction: column;
    margin-left: 1em;
}

.orgname {
    font-size: 36px;
    font-family: "futura-pt", 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
}

.pagename {
    font-size: larger;
    color: #444;
    margin: 0;
    font-weight: normal;
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: large;
    margin: 1.5em 0;
}

.btn {
    padding: 0.5em 1em;
    border: 3px solid #444;
    border-radius: 0.66em;
    text-decoration: none;
    color: #444;
    font-weight: bold;
}

h2 {
    font-family: "futura-pt", 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

table {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    border-collapse: collapse;
}

table.lines tr:not(:last-child) {
    border-bottom: 1px dotted #444;
}

td {
    padding: 3px 0;
}

table.alternate tr:nth-child(even) td {
    background-color: #DDD;
}

.number {
    font-family: "Source Code Pro", monospace;
    /* text-align: right; */
    color: black;
    width: 40%;
}

.number a {
    text-decoration: none;
    color: black;
}