html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    background: #0f1115;
    color: #d6d6d6;
    line-height: 1.6;
    padding: 0 40px;
    box-sizing: border-box;
}

header {
    margin-top: 20px;
}

main {
    flex: 1;
    max-width: 900px;
    width: 100%;
}

footer {
    border-top: 1px solid #2a2f3a;
    padding: 6px 0;
    color: #888888;
    font-size: 0.8rem;
}

h1 {
    font-size: 1.4rem;
    font-weight: normal;
    color: #ffffff;
    margin: 0;
}

a {
    color: #6ca0ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px solid #2a2f3a;
    margin: 20px 0;
}

pre {
    font-family: inherit;
}

body.home #home-anchor {
  display: none;
}

.kao-banner {
  width: 100vw; /* full viewport width */
  margin-left: calc(-50vw + 50%); /* pull it out left */
  margin-right: calc(-50vw + 50%); /* pull it out right */
  left: 0;
  right: 0;
  position: fixed;
  top: 0;
  z-index: 9999;
}