
blockquote {
    font-style: italic;
    border-left: 0.5rem solid rgba(204, 204, 204, 0.5);
    padding: 0.25rem;
    text-align: left;
}

blockquote p {
    margin: 1.5rem 0.5rem;
    margin-left: 1.5rem;
}

blockquote p:first-of-type {
    margin-top: 0;
}

blockquote p:last-of-type {
    margin-bottom: 0;
}

.citation {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-style: italic;
}

body {

}

body > main {
    text-align: center;
    max-width: initial;
    /*height: 100%;*/
}

body > main > main {
    /*height: 100%;
    /*overflow-y: auto;
    /*scroll-snap-type: y mandatory;*
    scroll-snap-type: y;*/
    scroll-snap-type: y mandatory;
    scroll-snap-stop: always;
}

body > main > main > section.stage {
    box-sizing: border-box;
    width: 100%;
    height: calc(100dvh - 2rem);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

body > main > main > section.intro.stage {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    justify-items: center;
    align-items: center;
    grid-auto-flow: row;
    place-items: stretch;
    max-width: calc(1.5 * 100dvh);
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
}

body > main > main > section.intro.stage div {
    grid-column-end: span 2;
    grid-row-end: span 1;
    font-family: "Special Elite", serif;
    align-self: center;
}

body > main > main > section.intro.stage div.title {
    grid-column-start: 2;
    grid-row-start: 2;

}

body > main > main > section.intro.stage div.title h1 {
    font-size: 3rem;
    line-height: 3rem;
    font-weight: bold;
}

body > main > main > section.intro.stage div.description {
    grid-column-start: 2;
    grid-row-start: 3;
    font-size: 1.5rem;
    line-height: 1.5rem;
}

body > main > main > section.intro.stage img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body > main > main > section.art.stage {
    height: calc(100dvh - 2rem);
    /*width: 100%;
    height: 100%;*/
    display: grid;
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: center;
    padding: 1em;
    box-sizing: border-box;
}

body > main > main > section.art.stage.wide {
    grid-template-columns: 7fr 3fr;
}

body > main > main > section.art.stage > div > h1 {
    font-family: "Nashira Free", sans-serif;
    font-weight: normal;
}

body > main > main > section.art.stage > img {
    box-sizing: border-box;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    /*margin: 0 auto;*/
    display: block;
    object-fit: contain;
    flex-grow: 0;
    border: 0.5rem solid #000;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@supports (animation-timeline: view()) {
    body > main > main > section.art.stage {
        opacity: 0;
        animation-name: fade-in;
        animation-duration: 1s;        /* total time if it were time-based */
        animation-fill-mode: both;
        animation-timing-function: ease;
        animation-timeline: view();     /* tie to viewport entry */
        animation-range: entry 10% cover 50%;
    }
}

@media (aspect-ratio < 1/1) {
    body > main > main > section.art.stage {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    body > main > main > section.art.stage img {
        max-height: calc(70dvh - 1.5rem);
    }

    body > main > main > section.art.stage div {
        flex-shrink: 0;
        max-height: calc(30dvh - 1.5rem);
    }
}

/* IMAGE SPECIFIC VALUES */

img.img-lighthouse-2 {
    object-position: 60% 50%;
}

img.img-top {
    object-position: 50% 0;
}

img.img-lighthouse {
    object-position: 80% 50%;
}

img.img-lighthouse-3 {
    object-position: 56.3% 50%;
}

img.img-shirtless {
    object-position: 47.5% 0;
}

img.img-symphony {
    object-position: 60% 50%;
}

img.img-torture {
    object-position: 72.5% 50%;
}