body {
    font-family: system-ui;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 1rem 10rem 1rem;
    background-color: cornsilk;
    color: black;
    line-height: 1.5;
}

a {
    color: blue;
    text-decoration: underline;
}

a:hover,
a:focus {
    outline: 3px solid blue;
    outline-offset: 5px;
    border-radius: 0.1rem;
}

hr {
    border: 0;
    border-top: 1px solid #404040;
    margin: 2rem 0;
}

.skip-link {
    position: absolute;
    top: -9999px;
    left: -9999px;
}

.skip-link:focus {
    top: 0;
    left: 0;
    background: #ffffff;
    color: #1e1e1e;
    padding: 0.5rem;
    z-index: 100;
} 