

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

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

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

header {
    background-color: #000;
    color: gold;
}

header img {
    max-height: 130px;
    margin: 30px auto 0 auto;
    display: block;
    
}

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

header a  {
    text-decoration: none;
}

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

nav {
    margin-top: 20px;
    text-align: center;
}

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

nav li a {
    text-decoration: underline;
}

body > article {
    margin-left: auto;
    margin-right: auto;
    line-height: 1.333;
    margin-bottom: 30px;
    max-width: 1040px;
    padding-left: 30px;
    padding-right: 30px;
}

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

h2 {
    margin: 20px 0;
}

h3 {
    color:lighter;
    margin-bottom: 20px;
}

a.lightview.centered {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    text-decoration-line: none;
}

a.lightview.centered img {
    margin: 10px auto 4px auto;
    display: block;
    max-width: 100%;
}

a.lightview.centered .caption {
    text-decoration: none;
    font-size: 80%;
    font-weight: bold;
    display: block;
    text-align: center;
    color: #777;
}

iframe {
    max-width: 100%;
}

iframe.iframe-tracking {
    width: 100%;
    aspect-ratio: 16/9;
}

div.video-caption p {
    margin-bottom: 40px;
}

p {
    margin-bottom: 10px;
}

a {
    color: inherit;
}

.pvbox-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.pvbox-description {
    flex: 5 0 auto;
    flex-wrap: wrap;
    width: 80%;
}

.pvbox-image {
    flex: 2 2 auto;
}

.pvbox-image img {
    max-width: 100%;
}




footer {
    height: 150px;
    padding-top:1px;
    background-color: #000;
    color: gold;
}

footer div {
    margin: 20px auto;
    display: block;
    max-width: 300px;
    padding: 10px;
    text-align: center;
    background-color: #bbb;
    border-radius: 12px;
    font-size: 80%;
    color: #000;
}

.description {
    margin-bottom: 40px;
}

.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;
}

.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;
}

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

.italic {
    font-style: italic;
}

@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;
    }
}
