body {
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
}

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

header {
    background-color: #62923E;
    text-align: center;
    font-size: 12px;
    padding: 20px;
    font-weight: bold;
}

a {
    text-decoration: none;
}

main {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    border-top: 1px solid #ccc;
    max-width: 1024px;
    margin: 50px auto;
    padding: 50px 0;
}
footer a {
    color: #363;
}
.statsbar {
    background: #030;
    padding: 10px 0;
}
.statsbar dt {
    color: #363;
    white-space: pre;
}
.statsbar dd {
    color: #9c9;
    white-space: pre;
}
.innerstats {
    max-width: 1024px;
    padding: 0 12px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.innerstats dl {
    display: flex;
    gap: 7px;
}

.block {
    display: block;
}
.flex {
    display: flex;
}
.grid {
    display: grid;
}
.absolute {
    position: absolute;
}
.relative {
    position: relative;
}
.top-0 {
    top: 0;
}
.right-0 {
    right: 0;
}
.bottom-0 {
    bottom: 0;
}
.w-full {
    width: 100%;
}
.max-w-full {
    max-width: 100%;
}
.h-auto {
    height: auto;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 700px) {
    .md-flex {
        display: flex;
    }
}

.flex-wrap {
    flex-wrap: wrap;
}
.space-evenly {
    justify-content: space-evenly;
}

.uppercase {
    text-transform: uppercase;
}

.gap-2 {
    gap: 8px;
}
.gap-3 {
    gap: 12px;
}
.gap-4 {
    gap: 16px;
}
.gap-5 {
    gap: 20px;
}
.gap-6 {
    gap: 24px;
}

.p-2 {
    padding: 8px;
}
.p-3 {
    padding: 12px;
}
.p-6 {
    padding: 24px;
}
.py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}
.mb-3 {
    margin-bottom: 12px;
}
.mb-4 {
    margin-bottom: 16px;
}
.mb-5 {
    margin-bottom: 20px;
}
.mb-6 {
    margin-bottom: 24px;
}
.my-4 {
    margin-bottom: 16px;
    margin-top: 16px;
}
.my-6 {
    margin-bottom: 24px;
    margin-top: 24px;
}

.bg-black {
    background-color: #000;
}
.bg-grey {
    background-color: #eee;
}
.bg-smoke {
    background-color: rgba(0,0,0,0.6);
}
.hover-outline-4-black:hover {
    outline: 4px solid #000;
}

.text-center {
    text-align: center;
}
.text-white {
    color: #fff;
}

.text-gray-300 {
    color: #999;
}
.text-gray-600 {
    color: #666;
}

.lh-sm {
    line-height: 1.2em;
}
.lh-md {
    line-height: 1.4em;
}
.lh-lg {
    line-height: 1.6em;
}


/*.lightbox:open {
    opacity: 1;
    transform: scale(1,1);
}*/
.lightbox {
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.45);
    border: none;
    overflow: hidden;
    max-height: 90vh;
    max-width: 90vw;
    margin: auto;
    cursor: pointer;
    /*transform: scale(0,0);
    opacity: 0;
    transition: all 0.3s allow-discrete;*/
}
.lightbox img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    cursor: pointer;
}

.lightbox::backdrop {
    background-color: rgba(0,0,0,0.15);
    cursor: pointer;
}

/*@starting-style {
    .lightbox:open {
        opacity: 0;
        transform: scale(0,0);
    }
}*/

a[href$=".jpg"] img {
    display: block;
    width: 100%;
    height: auto;
}

a[href$=".jpg"]:hover {
    outline: 4px solid #000;
}




@media (max-width: 600px) {

    body {
        font-size: 14px;
    }

    .innerstats {
        font-size: 12px;
    }
    .figure > div {
        position: static;
        background-color: #000;
        font-size: 12px;
    }
    nav {
        font-size: 14px;
    }
    .xs-shrink {
        transform: scale(50%,50%);
        transform-origin: top right;
    }
    .xs-none {
        display: none;
    }
}

.preformatted p, .preformatted ul {
    margin-bottom: 1.5em;
}
.preformatted ul {
    padding-left: 1em;
}
.preformatted li {
    margin-bottom: 1em;
}

.preformatted a {
    background: #cfc;
    color: #030;
}
.preformatted a:hover {
    background: #363;
    color: #fff;
}