* {
    box-sizing: border-box;
}

html {
    font-family: "Saira", sans-serif;
    /* background: #000; */
    /* color: #eee; */
    /* font-size: 14pt; */
    height: 100%;
    display: flex;
    flex-direction: column;
    /* padding: 1rem; */
    box-sizing: border-box;
}

body > * {
    padding: 1rem;
    /* border: 1px solid #000; */
    box-sizing: border-box;
}

body {
    /* background: #080808; */
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

h1 {
    font-weight: 600;
}

h2 {
    /* color: #00dcbe; */
    font-weight: 500;
    border-bottom: 1px solid;
}

header, footer {
    text-align: center;
}

main {
    flex: 1;
    width: 900px;
    max-width: 100%;
    align-self: center;
}

a {
    color: blue;
    text-decoration: none;
    /* font-weight: bold; */
}
a[target="_blank"]::after {
    content: "";
    display: inline-block;
    margin-left: .1em;
    width: .85em;
    height: .85em;
    background-image: url("/static/img/external-link.svg");
    vertical-align: baseline;
    background-size: contain;
    background-repeat: no-repeat;
}