/* ========================================
   MY FRIEND FERNANDO
   ======================================== */

:root {
    --background: #f4f1e8;
    --paper: #fffdf7;
    --text: #222222;
    --muted: #77736b;
    --link: #274f7d;
    --border: #c9c4b8;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    background: var(--background);
    color: var(--text);

    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.65;
}

/* ========================================
   PAGE
   ======================================== */

.container {
    width: 90%;
    max-width: 820px;
    margin: 40px auto;
    padding: 45px 55px;

    background: var(--paper);
    border: 1px solid var(--border);
}

/* ========================================
   HEADER
   ======================================== */

.site-header {
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 3px double var(--border);
}

.site-header h1 {
    margin: 0;

    font-size: 2.3rem;
    font-weight: normal;
    letter-spacing: -1px;
}

.tagline {
    margin: 5px 0 0;

    color: var(--muted);
    font-size: 0.95rem;
    font-style: italic;
}

/* ========================================
   POSTS
   ======================================== */

.post {
    margin-bottom: 45px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.post:last-child {
    border-bottom: none;
}

.post h2 {
    margin: 0 0 2px;

    font-size: 1.55rem;
    font-weight: normal;
}

.date {
    margin-bottom: 18px;

    color: var(--muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post p {
    margin: 0 0 1em;
}

/* ========================================
   LINKS
   ======================================== */

a {
    color: var(--link);
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    margin-top: 50px;
    padding-top: 20px;

    border-top: 3px double var(--border);

    color: var(--muted);
    font-size: 0.85rem;
    text-align: center;
}

/* ========================================
   MOBILE
   ======================================== */

@media (max-width: 600px) {

    .container {
        width: 100%;
        margin: 0;
        padding: 30px 22px;
        border: none;
    }

    .site-header h1 {
        font-size: 1.8rem;
    }

    .post h2 {
        font-size: 1.35rem;
    }
}