html {
    color-scheme: light;
    scroll-behavior: smooth;
    user-select: none;
}

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

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
    background-color: #f8f8f8;
    color: #222;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #555;
}

.text-center {
    text-align: center;
}

header {
    padding: 48px;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

header h1 {
    font-weight: 100;
    letter-spacing: 2px;
    font-size: 2.5rem;
    padding-top: 8px;
    padding-bottom: 32px;
}

nav {
    display: flex;
    justify-content: space-around;
    max-width: 768px;
    margin: 24px auto 0 auto;
}

nav a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
}

nav a:hover {
    color: #ccc;
}

.section {
    padding: 80px 24px;
    max-width: 900px;
    margin: 0 auto;
    border-bottom: 1px solid #ccc;
}

.section h2 {
    font-weight: 300;
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
}

.section p {
    font-weight: 300;
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 0;
    color: #555;
}

.section p:not(:first-child) {
    padding-top: 12px;
}

.gallery {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    justify-items: center;
    align-items: center;
    gap: 48px;
}

.gallery.vertical {
    max-width: 640px;
    margin: 48px auto;
}

@media (min-width: 640px) {
    .gallery:not(.vertical) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
}

.gallery .item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery .item figure {
    margin: 0;
}

.gallery .item figure figcaption {
    text-align: center;
    padding: 2px;
}

.gallery .item figure figcaption .title {
    font-weight: 300;
    font-size: 0.9rem;
}

.gallery .item figure figcaption .date {
    font-weight: 200;
    font-size: 0.7rem;
}

.gallery .item img {
   width: 100%;
   object-fit: cover;
}

.gallery .item img.squared {
   aspect-ratio: 1/1;
}

.gallery .item .audio {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 480px;
    cursor: pointer;
}

.gallery .item .audio .play {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1;
    border: none;
}

.gallery .item .audio .play svg {
    width: 20px;
    height: 20px;
}

.gallery .item audio {
    display: none;
}

#links a {
    padding: 16px;
    display: inline-flex;
}

#links a:hover {
    opacity: 0.7;
}

#links a img {
    width: 36px;
    height: 36px;
    opacity: 0.7;
}

.footer {
    text-align: center;
    padding: 48px;
    font-size: 0.8rem;
    color: #555;
}














