/**
*  Publish Empire theme
*  MIT license, see LICENSE file for details
*/

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

body {
    background: #fff;
    color: #000;
    font-family: Helvetica, Arial;
    padding: 7em 0em 6em 0em;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

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

header {
    margin-bottom: 2em;
    padding-bottom: 2em;
    background: rgb(250,250,250);
    background: rgba(250,250,250,.85);
    position: fixed;
    left: 0px;
    top: 0px;
    height: 5em;
    width: 100%;
}

header .wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
}

header a {
    text-decoration: none;
}

header .avatar {
    height: 2em;
    width: 2em;
    float: left;
}

header .site-name {
    color: #000;
    margin: 0;
    cursor: pointer;
    font-family: HelveticaNeue;
    font-weight: 200;
    font-size: 2em;
    letter-spacing: 1px;
}

header .description {
    color: #444;
    margin: 0;
    font-size: 16px;
}

header .nav {
    color: #555;
    margin: 0;
    font-size: 14px;
    float: right;
}
nav {
    margin-top: -1.5em;
}

nav li {
    display: inline-block;
    padding: .5em;
    color: #222;
    float: right;
}

.selected {
    font-weight: bold;
    color: #888;
}

headerspace {
    padding: 80px 0px 0px 0px;
}

h1 {
    font-size: 2em;
}

h2 {
    margin: 20px 0;
}

p {
    margin-bottom: 6px;
}

.postedon {
    font-size: .75em;
}

.updatedon {
    font-size: .75em;
    font-weight: bold;
}

a {
    color: inherit;
}

.description {
    margin-bottom: 4px;
}

.item-list > li {
    display: block;
    padding: 30px;
    border-radius: 20px;
    background-color: #eee;
    margin-bottom: 20px;
}

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

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

.item-list p {
    margin-bottom: 10px;
}

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

.tag-list li,
.tag {
    display: inline-block;
/*    background-color: #555; */
    color: #ddd;
    padding: 6px 6px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    align-content: center;
}

.tag-apple   { background-color: #38a8d8; }
.tag-cooking { background-color: #e4ae2c; }
.tag-food    { background-color: #aa7e16; }
.tag-jekyll  { background-color: #533088; }
.tag-web     { background-color: #429217; }
.tag-publish { background-color: #429217; }
.tag-random  { background-color: #9f7dd1; }
.tag-travel  { background-color: #e77167; }
.tag-footer  { background-color: #25415c; }

.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: 1em;
    margin: 4px;
    padding: 4px 6px;
}

footer {
    color: #8a8a8a;
    padding: 10px 0;
    text-align: center;
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1em;
    background: rgb(250,250,250);
    background: rgba(250,250,250,.85);
    position: fixed;
    left: 0px;
    bottom: 0px;
    height: 5em;
    width: 100%;
}

.footer-list p {
    display: inline;
}
.footer-icon {
    padding: 2px;
}
.footer-icon img {
    max-width: 40px;
    height: auto;
}

.copyright {
    padding-top: 4px;
    font-size: 10pt;
    float: none;
    align-content: center;
}

.generatedby {
    float: right;
    text-align: right;
    font-size: small;
    padding-right: 40px;
    margin-top: -2em;
}

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

    body,
    header .site-name {
        color: #ddd;
    }
    
    header .description {
        color: #444;
    }
    
    .item-list > li {
        background-color: #333;
    }

    header {
        background: rgba(0,0,0,.85);
    }
    footer {
        background: rgba(0,0,0,.85);
    }
}


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