:root {
    --pico-font-size: 100%;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-items {
    display: flex;
    gap: 1rem;
}

article footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

pre {
    background-color: var(--pico-code-background-color, #1e1e2e);
    border-radius: 0.5rem;
    padding: 1rem;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

pre code {
    background: none;
    padding: 0;
    font-size: 0.875rem;
    color: var(--pico-code-color, #cdd6f4);
}

/* remove underline */
time>a.post_created_at {
    text-decoration: none;
}