@import url("tokens.css");

body {
    font-family: var(--font-body);
    max-width: 38rem;
    margin: 2rem auto;
    padding: 0 1rem;
    line-height: 1.6;
    font-size: 24px;
    color: var(--color-text);
    background: var(--color-bg)
}

a {
    color: var(--color-accent)
}

header nav {
    display: flex;
    gap: 1rem;
}

.post-list {
    list-style: none;
    padding: 0;
}

.post-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.post-meta,
.post-list time {
    color: var(--color-text);
    opacity: 0.6;
    font-size: 0.85em;
}

footer {
    margin-top: 3rem;
    opacity: 0.6;
    font-size: 0.85em;
}
