html {
    font-family: 'Roboto Slab', serif;
}

body {
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main {
    padding: 0 3em;
    min-height: 0;
}

.top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1em;
    background: white;
    position: sticky;
    top: 0;
}

.blog {
    margin-top: 1rem;
    padding: 0 30%;
}

@media (max-width: 480px) {
    .blog {
        padding: unset;
    }
}

.blog-post>h2 {
    font-size: medium;
}

.blog-post .dt-posted {
    font-size: smaller;
}

.intro {
    margin: 1rem 0;
}

.centered-text {
    text-align: center;
}

.headshot {
    height: 200px;
    width: 200px;
    border-radius: 50%;
}

.socials>a {
    text-decoration: none;
}

.socials>a>img {
    margin: 0 0.6rem;
    height: 25px;
    width: 25px;
}