:root {
    /* Colors from the Earthy tones theme */
    --primary-bg: #6c584c;
    --secondary-bg: #a98467;
    --body-bg: #f0ead2;
    --header-bg: #adc178;

    --primary-text: #eee;
    --secondary-text: #111;
    --body-text: #111;
    --header-text: #111;
    --muted-text: #333;

    --spacing: 15px;

    --body-font: 'Libre Baskerville';
    --header-font: 'Work Sans';
    --fun-font: 'Bangers';
}

/* Generated with https://transfonter.org/ */
@font-face {
    font-family: 'Libre Baskerville';
    src: local('Libre Baskerville Regular'), local('LibreBaskerville-Regular'),
    url('fonts/LibreBaskerville-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Libre Baskerville';
    src: local('Libre Baskerville Italic'), local('LibreBaskerville-Italic'),
    url('fonts/subset-LibreBaskerville-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Bangers';
    src: local('Bangers Regular'), local('Bangers-Regular'),
    url('fonts/subset-Bangers-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: local('Work Sans Regular'), local('WorkSans-Regular'),
    url('fonts/WorkSans-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: local('Work Sans Italic'), local('WorkSans-Italic'),
    url('fonts/WorkSans-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--body-font), serif;
    font-size: 16px;
    line-height: 1.3;
    background-color: var(--body-bg);
    color: var(--body-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-text), sans-serif;
    text-decoration: underline var(--secondary-bg);
}

.fun {
    font-family: var(--fun-font), cursive;
    font-size: 1.2rem;
}

.post-date {
    font-size: 0.8rem;
    margin-top: -10px;
}

a {
    color: var(--primary-bg);
    text-decoration: underline var(--primary-bg);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

.site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    background-color: var(--header-bg);
    color: var(--header-text);
    border-bottom: 1px var(--secondary-bg) solid;
    z-index: 20;
    padding: 4px 0;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.site-header a {
    color: inherit;
    text-decoration: none;
}

.site-header .align-right {
    margin-left: auto;
}

.brand {
    align-items: center;
    display: flex;
}

.brand .logo {
    height: 40px;
}

section {
    margin: var(--spacing) 0;
}

.btn {
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 700;
    background: var(--primary-bg);
    color: var(--primary-text);
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin: 5px 0;
}

footer {
    color: var(--muted-text);
    font-size: 0.8rem;
    border-top: 1px var(--secondary-bg) solid;
}