* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    font-family: sans-serif;
    color: #222;
    font-size: 0.875rem;
    line-height: 1.6;
}

.container {
    flex-grow: 1;
    min-width: 320px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.container ul,
.container ol {
    padding-left: 1.5em;
}

.header {
    margin-bottom: 30px;

    .full-name {
        font-size: 40px;
        text-transform: uppercase;
        line-height: 1.1;
    }

    .first-name {
        font-weight: 700;
    }

    .last-name {
        font-weight: 300;
    }

    .contact-info {
        margin-bottom: 30px;
    }

    .image-cutout-container {
        margin-bottom: 20px;
    }

    .image-cutout {
        width: 75%;
        height: auto;
        max-width: 468px;
        border-radius: 50%;
    }

    .email {
        color: #999;
        font-weight: 300;
    }

    a {
        text-decoration: none;
        color: #000;
    }

    a:hover {
        text-decoration: underline;
        color: #999;
    }

    .position {
        font-weight: bold;
        display: inline-block;
        margin-right: 10px;
    }
}

nav {
    padding: 8px 40px;
    border-bottom: 1px solid #eee;
}

nav a {
    margin-right: 20px;
    text-decoration: none;
    color: #222;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

nav a:hover {
    color: #999;
}

footer {
    padding: 8px 40px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 20px;
}

footer a {
    color: #999;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.page-title {
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #222;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.post-header {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.post-header h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}

.post-header time {
    font-size: 12px;
    color: #999;
}

.blog-entry {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.blog-entry:first-child {
    border-top: 1px solid #eee;
}

.blog-entry-title {
    text-decoration: none;
    color: #222;
}

.blog-entry-title:hover {
    color: #999;
}

.blog-entry-date {
    color: #999;
    font-size: 12px;
    flex-shrink: 0;
    margin-left: 20px;
}

.blog-empty, .blog-error {
    color: #999;
    padding: 20px 0;
}

@media (max-width: 600px) {
    nav, footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .container {
        padding: 20px;
    }

    .header {
        .full-name {
            font-size: 28px;
        }

        .image-cutout {
            width: 100%;
        }
    }
}
