:root {
    --s1: 8px;
    --s2: 16px;
    --s3: 26px;
    --s4: 44px;
    --s5: 76px;
}
body {
    font-family: Futura, sans-serif;
    background-color: rgba(232, 230, 225, 0.8);
    color: #26241f;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
}
h1 {
    color: #2456c4;
    font-size: 3em;
}
h2 {
    color: #c0357f;
    font-size: 2em;
}   
img, video {
    max-width: 100%;
    height: auto;
}
.hero {
    max-width: 500px;
}
.logo {
    max-width: 450px;
}
iframe {
    border: none;
    max-width: 100%;
    height: 1200px;
}
.nav, .footer-nav {
    background-color: #393939;
    padding: var(--s2) 0;
}
.nav a, .footer-nav a {
    color: #68cdb9;
    text-decoration: underline;
    margin: 0 var(--s2);
}
#fish {
    position: absolute;
    font-size: 2em;
    transition: left 0.4s, top 0.4s;
}
html {
    scroll-behavior: smooth;
    background-image: url("2026-0716_tonedbluepaper_16_edit-5_web.jpg");
    background-size: cover;
    background-position: center;
}
.cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s3);
}
.card {
    background-color: rgba(232, 230, 225, 0.6);
    border-style: solid;
    border-width: 30px;
    border-image-source: url("2026-0730_card-frame-square_1.png");
    border-image-slice: 170;
    border-image-repeat: stretch;
    padding: var(--s4);
    text-align: left;
}
@media (max-width: 700px) {
    .cards {
        grid-template-columns: 1fr;
    }
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--s3);
}
.gallery figure {
    margin: 0;
    background: rgba(244, 239, 225, 0.85);
    padding: var(--s2);
}
.gallery img {
    width: 100%;
    display: block;
}
.gallery figcaption {
    margin-top: var(--s1);
    font-size: 0.85em;
}