html {
    font-size: 16px;
    scroll-behavior: smooth;
    line-height: 1.25;
}

body {
    overflow-y: auto;
}

body > header {
    text-align: center;
    border-bottom: solid;
    font-weight: bold;
    font-size: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

main.container {
    padding-left: 20px;
    padding-right: 20px;
}

.contentContainer {
    margin: 0rem 3rem 0rem 3rem;
    max-width: 50rem;
}

.unstyled-link {
    color: inherit;
    text-decoration: none;
}

article {
    box-shadow: none;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: var(--pico-muted-color, #777);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

*,
code {
    font-family: monospace;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin: 1rem;
}

h1,
h2 {
    margin-bottom: 0.3rem;
}

li {
    margin-bottom: 0.4rem;
}

.subtitle {
    margin: 2px 0 0;
    font-size: 0.5rem;
    color: #777;
    font-weight: 400;
}

img.avatar {
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.avatarContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 1rem 0rem 1rem 0rem;
}

footer {
    clear: both;
    padding-top: 2rem;
}

.layout {
    display: grid;
    grid-template-columns: auto minmax(0, 75ch) auto;
}

.sidebar-left,
.sidebar-right {
    position: sticky;
    top: 24px;
    align-self: start;
}

main.content {
    min-width: 0;
}

@media (max-width: 95ch) {
    .layout {
        grid-template-columns: minmax(0, 75ch);
    }

    .sidebar-left,
    .sidebar-right {
        display: none;
    }
}

.horizStack {
    display: flex;
    flex-direction: row;
    align-items: center;
}

p {
    margin: 0.7rem 0rem 0.7rem 0rem;
}
