*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    background-color: #1a1a1a;
    color: #e8e8e8;
    font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, monospace;
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

main {
    width: 100%;
    max-width: 36rem;
    margin-block: auto;
}

header {
    margin-bottom: 2rem;
}

h1 {
    margin: 0 0 0.25rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #888;
}

.handle {
    margin: 0 0 0.25rem;
    color: #aaa;
}

.tagline {
    margin: 0;
    color: #888;
}

.intro p {
    margin: 0;
    color: #ccc;
}

.intro p + p {
    margin-top: 1rem;
}

section + section {
    margin-top: 2rem;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

li + li {
    margin-top: 0.5rem;
}

.link-list a {
    color: #e8e8e8;
    text-decoration: none;
}

.link-list a::before {
    content: "→ ";
    color: #666;
}

.link-list a:hover,
.link-list a:focus-visible {
    color: #fff;
}

.link-list a:hover::before,
.link-list a:focus-visible::before {
    color: #aaa;
}

.content-list li::before {
    content: "· ";
    color: #666;
}

section a {
    color: #e8e8e8;
    text-decoration: none;
}

section a:hover,
section a:focus-visible {
    color: #fff;
}

a:focus-visible {
    outline: 1px solid #666;
    outline-offset: 2px;
}

.gopher {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 7rem;
    opacity: 0.85;
    transition: opacity 0.15s ease;
}

.gopher:hover,
.gopher:focus-visible {
    opacity: 1;
}

.gopher img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 40rem) {
    .gopher {
        width: 5rem;
        right: 1rem;
        bottom: 1rem;
    }
}
