div.footer {
    margin-top: 5rem;
    margin-bottom: 5rem;
    text-align: center;
}

.site-title {
    margin-top: 3rem;
    text-align: center;
}

.site-hero {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.site-hero>ul {
    text-align: left;
}

@media (max-width: 720px) {
    .site-hero {
        flex-direction: column;
        gap: 1.75rem;
    }

    .site-hero>ul {
        text-align: center;
    }
}

.site-hero>img {
    width: 300px;
    height: 300px;
    max-width: 100%;
    max-height: 100%;
}

.site-hero>ul {
    list-style-type: none;
    font-size: x-large;
    line-height: 3rem;
    margin: 0;
    padding: 0;
}

div.content-list {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;

    h1 {
        padding: 2rem;
    }

    .term-name {
        text-transform: lowercase !important;
    }

    ul {
        list-style-type: none;
        padding: 0;

        li {
            padding-top: 1.5rem;

            a {
                text-decoration: none;
            }

            .date-label {
                color: gray;
                font-size: 80%;
            }
        }
    }
}

nav.site-menu>ul {
    display: flex;
    list-style-type: none;
    justify-content: center;
    flex-flow: row wrap;
    gap: .5rem;
    text-align: center;
    padding: 0;
    line-height: 1.8rem;;
}

nav.site-menu>ul>li {
    display: inline;
}

nav.site-menu>ul>li>a {
    padding: .5rem;
}

nav.site-menu>ul>li>a:hover {
    background-color: black;
    text-decoration: none;
    color: white;
    border-radius: .5rem;
}

article.blogpost {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;

    h1 {
        font-size: 300%;
        font-weight: 400;
    }

    pre {
        margin: 0;
        padding: 1.5rem;
        line-height: default !important;
        border-radius: 1rem;
        margin-bottom: 1rem;
    }

    p:has(img) {
        padding: 1rem;
    }

    img {
        max-width: 100%;
    }

    blockquote {
        margin: 0;
        background-color: rgb(230, 230, 230);
        padding: 1.5rem;
        border-radius: 1rem;
        margin-bottom: 2rem;
        margin-bottom: 2rem;
        color: rgb(80,80,80);

        p {
            line-height: 1.5rem;
            margin-top: 0;
            margin-left: 0;
            margin-right: 0;
            padding-left: 0;
            padding-right: 0;
        }
    }
}

article.blogpost>h2 {
    font-size: 200%;
}

article.blogpost>p {
    line-height: 1.8rem;
}

.terms {
    padding-bottom: 3rem;

    ul {
        list-style-type: none;
        padding: 0;
    }

    li {
        display: inline;
        background-color: black;
        color: white;
        font-size: 75%;
        padding: .5rem;
        border-radius: 1rem;
    }
    
    a {
        text-transform: lowercase;
        color: inherit !important;
        text-decoration: none !important;
    }
}

body {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

a {
  color: black;
}

a:active {
  color: red;
}