* {
    /* From https://systemfontstack.com/ */
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        avenir next,
        avenir,
        segoe ui,
        helvetica neue,
        Adwaita Sans,
        Cantarell,
        Ubuntu,
        roboto,
        noto,
        helvetica,
        arial,
        sans-serif;
}
html {
    background: #181a1b;
}
body {
    margin: 40px auto;
    max-width: 1000px;
    line-height: 1.6;
    font-size: 16px;
    color: #bbb;
    padding: 0 10px;
}
h1,
h2,
h3 {
    line-height: 1.2;
}
a {
    color: #e00e16;
}
figcaption {
    font-size: 90%;
}
.headshot {
    float: left;
}
@media (max-width: 600px) {
    .headshot {
        float: none;
    }
    .headshot img {
        display: block;
        margin: auto;
    }
}
.headshot figcaption {
    text-align: center;
}
.rounded {
    border-radius: 0.25rem !important;
}
ul {
    overflow: auto;
    padding: 0 0 0 1em;
}
.btn:hover {
    background-color: #800310;
}
.btn {
    color: #eee;
    background-color: #a70e16;
    border-color: #a70e16;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
