/**
*  Tealcafe
*  Copyright (c) Tealcafe 2023
*  MIT license, see LICENSE file for details
*/

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

/* MARK: Body Styles */

body {
    background: #fff;
    color: #000;
    font-family: Helvetica, Arial;
    text-align: center;
}

body, h1, h2, h3, h4, h5, h6 {
    font-family: Verdana, sans-serif;
}

body a {
    color: inherit;
}

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

/* MARK: Header Styles */

header {
    background: linear-gradient(90deg, rgba(3,61,73,1), rgba(0,128,128,1), rgba(34,195,193,1));
}

h1.header-title {
    font-family: Papyrus, serif;
}

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

header a {
    text-decoration: none;
}

header .site-name {
    font-size: 1.5em;
    color: #000;
    font-weight: bold;
}

/* MARK: Footer Styles */

footer {
    color: #8a8a8a;
}

.footer {
    padding-bottom: 20px;
}

/* MARK: Nav Styles */

nav {
    margin-top: 20px;
}

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

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

/* MARK: Text Styles */

h1 {
    margin-bottom: 20px;
    font-size: 2em;
}

h2 {
    margin: 20px 0;
}

p {
    margin-bottom: 10px;
}

/* MARK: Link Styles */

a {
    color: teal;
}

p a {
    color: teal;
}

.text a {
    color: teal;
}

.footer a {
    color: teal;
}


/* MARK: Item List Styles*/

.item-list > li {
    display: block;
    padding: 20px;
    border-radius: 20px;
    background-color: #eee;
    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;
}

/* MARK: Tag List Styles */

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

.tag-list li,
.tag {
    display: inline-block;
    background-color: #000;
    color: #ddd;
    padding: 4px 6px;
    border-radius: 5px;
    margin-right: 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;
}

/* MARK: Tag Styles */

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

.post-category {
    margin: 1px;
    padding: 0.3em 1em;
    color: #fff;
    background: #999;
    font-size: 60%;
    border-radius: 8px;
    text-decoration: none;
}

.post-category-philosophy {
    background-color: darkgoldenrod;
}

.post-category-technology {
    background-color: darkblue;
}

.post-category-development {
    background-color: darkred;
}

/* MARK: Other Class Styles */

.image-center {
    display: block;
    margin: 20px auto;
    width: 30%;
}

.description {
    margin-bottom: 40px;
}

/* MARK: Media Styles */

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

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

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

    header {
        background-color: #000;
    }
}

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

