/**
*  Based on Publish Foundation theme
*  Copyright (c) John Sundell 2019
*  MIT license, see LICENSE file for details
*/

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

body {
    background: #fff;
/*    font-family: Helvetica, Arial; */
    font-family: Georgia, Garamond, Times New Roman;
    text-align: center;
    line-height: 1.3;
    font-size: 16px;
    color: #404040;
}

.wrapper {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    text-align: left;
}

header {
    background-color: #bdf0ff;
}

header .wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
}

header a {
    text-decoration: none;
}

header .site-name {
    font-family: Verdana, sans-serif;
    font-size: 1.5em;
    color: #656463;
    font-weight: bold;
}

nav {
    margin-top: 20px;
}

nav li {
    display: inline-block;
    margin: 0 7px;
    line-height: 1.5em;
}

nav li a.selected {
    text-decoration: underline;
}

h1 {
    margin-bottom: 20px;
    font-family: Verdana, sans-serif;
    font-size: 2em;
    color: #656463;
}

h2 {
    margin: 20px 0;
    font-family: Verdana, sans-serif;
    color: #656463;
}

p {
    margin-bottom: 10px;
    text-align: justify;
}

.item-published {
    text-align: right;
}

a {
    color: inherit;
}

blockquote {
    margin-top: 10px ;
    margin-bottom: 10px;
}

blockquote p {
    position: relative;
    background-color: #efefef;
    padding: 10px 10px 10px 15px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border-left: 4px solid #19a198;
}

.description {
    margin-bottom: 40px;
}

.item-list > li {
    display: block;
    padding: 20px;
    border-radius: 20px;
/*    background-color: #ebf4fa; */
    border-style: solid;
    border-color: #e2e2e2;
    margin-bottom: 20px;
}

.item-list > li:last-child {
    margin-bottom: 0;
}

.item-list h1 {
    margin-bottom: 15px;
    font-size: 1.3em;
}

.item-list p {
    margin-bottom: 0;
}

.tag-list {
    margin-bottom: 10px;
}

.tag-list li,
.tag {
    display: inline-block;
    background-color: #7d7d7d;
    color: #fff;
    padding: 4px 6px;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.tag-list a,
.tag a {
    text-decoration: none;
}

.item-page .tag-list {
    display: inline-block;
}

.content {
    margin-bottom: 40px;
}

.browse-all {
    display: block;
    margin-bottom: 30px;
}

.all-tags li {
    font-size: 1.4em;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 6px 10px;
}

footer {
    color: #8a8a8a;
    text-align: center;
}

footer p {
    text-align: center;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #222;
    }

    body,
    header .site-name {
        color: #ddd;
    }

    .item-list > li {
        background-color: #333;
    }

    header {
        background-color: #001d3b;
    }

    h1, h2 {
        color: #ddd;
    }

    blockquote p {
        background-color: #333;
    }
}

@media(max-width: 600px) {
    .wrapper {
        padding: 40px 20px;
    }
}
