header h1 a {
    text-decoration:  none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

main {
    flex: 1;
}

footer {
    margin-top: auto;
}

.fineprint {
    text-align: center;
    font-size: .7em;
    color: var(--pico-muted-color);
}

header.subpage h1 {
    font-size: 1em;
}

header h1 .path {
    color: var(--pico-contrast);
}

blockquote {
    font-size: .9em;
    background-color: var(--pico-blockquote-background-color);
}

blockquote p:last-child {
    margin-bottom: 0;
}

.fineprint p {
    color: var(--pico-muted-color);
}

body hr {
    color: white;
    border-color: white;
    margin: 1rem auto;
    width: 80%;
}

.postpage {
    width: 85%;
    margin: 0 auto;
}

.postdate {
    font-size: .8em;
    color: var(--pico-muted-color);
    font-family: monospace;
}
.postauthor {
    font-size: .8em;
}

.postcontent {
    margin-top: 2rem;
}

.title {
    margin-bottom: .3rem;
}

.subtitle {
    margin-bottom: .3rem;
    color: var(--pico-muted-color);
    font-weight: normal;
    font-size: 1em;
}

.note {
	background-color: var(--pico-primary-background);
	padding: 1rem;
	border-radius: 5px;
	margin-bottom: 2rem;
}

li > p {
    margin: 0;
}

#subscribe-form {
    max-width: 400px;
    margin: 20px 0;
}

#subscribe-form input[type="email"] {
    padding: 8px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#subscribe-form button {
    padding: 8px 16px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#subscribe-form button:hover {
    background: #0052a3;
}

#subscribe-message {
    margin-top: 10px;
}

#subscribe-message.success {
    color: green;
}

#subscribe-message.error {
    color: red;
}