a {
    color: royalblue;
    text-decoration: none;
}
a:visited {
    color: royalblue;
}
aside {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    margin: 0;
    overflow: auto;
    a {
        color: inherit;
        text-decoration: none;
    }
    a:hover {
        background: whitesmoke;
    }
    h2 {
        margin: 0;
        padding: 4px;
    }
}
body {
    font-family: monospace;
    font-size: 16px;
    height: 200vh;
    margin: 0;
}
button {
    cursor: pointer;
}
div {
    display: flex;
    flex-direction: column;
}
form {
    display: flex;
    flex-direction: column;
}
h1 {
    font-size: 40px;
    margin: 0;
}
h2 {
    font-size: 32px;
    margin: 0;
}
h3 {
    font-size: 24px;
    margin: 0;
}
h4 {
    font-size: 16px;
    margin: 0;
    width: fit-content;
}
header {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 2px;
}
input {
    border: 1px solid gainsboro;
    font-size: 16px;
    margin: 0 0 2px 0;
    padding: 2px;
}
input:focus {
    outline: none;
}
label {
    display: flex;
}
p {
    margin: 0;
}
table {
    border-left: 1px solid gainsboro;
    border-top: 1px solid gainsboro;
    border-collapse: collapse;
}
td {
    border-bottom: 1px solid gainsboro;
    border-right: 1px solid gainsboro;
    padding: 0;
}
th {
    border-bottom: 1px solid gainsboro;
    border-right: 1px solid gainsboro;
    padding: 8px 4px 8px 4px;
}
thead {
    background: whitesmoke;
    text-transform: uppercase;
}
tr {
    text-align: left;
}
