/* ============================================================
   courts.studio — Maximalist Pastoral-Baroque
   A Victorian naturalist's aquarium-studio
   ============================================================ */

/* === CSS Custom Properties === */
:root {
    --burgundy: #6B1D2A;
    --claret: #8C2F3D;
    --cream: #FAF4EB;
    --parchment: #F0E2C8;
    --soot: #1C1714;
    --walnut: #5A4A3A;
    --verdigris: #3D8B7A;
    --copper: #9A7B5B;
    --koi: #D4763A;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    color: var(--soot);
    background-color: var(--cream);
    line-height: 1.72;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

/* === Typography === */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

/* === Floating Navigation Card === */
.nav-card {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 200px;
    background: var(--cream);
    border: 2px solid var(--burgundy);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(28, 23, 20, 0.12);
    transition: width 0.4s ease-in-out, height 0.4s ease-in-out, opacity 0.3s ease;
    overflow: hidden;
}

.nav-card--collapsed {
    width: 52px;
    height: 40px;
    border-radius: 20px;
    cursor: pointer;
}

.nav-card--collapsed .nav-card__content {
    opacity: 0;
    pointer-events: none;
}

.nav-toggle {
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.nav-fish-icon {
    width: 36px;
    height: 24px;
    animation: pulse 4s ease-in-out infinite;
}

.nav-card:not(.nav-card--collapsed) .nav-fish-icon {
    animation: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; }
}

.nav-card__content {
    padding: 3rem 1.2rem 1.2rem;
    opacity: 1;
    transition: opacity 0.3s ease 0.15s;
}

.nav-card__list {
    list-style: none;
}

.nav-card__list li {
    margin-bottom: 0.5rem;
}

.nav-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--walnut);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.15rem 0;
}

.nav-link:hover,
.nav-link--active {
    color: var(--verdigris);
}

/* === Spreads (Sections) === */
.spread {
    position: relative;
    overflow: hidden;
}

.spread__content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* === Interstitial Margins === */
.interstitial {
    height: 15vh;
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
}

.interstitial::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 40px;
    transform: translateY(-50%);
    background:
        repeating-linear-gradient(
            90deg,
            var(--burgundy) 0px,
            var(--burgundy) 3px,
            transparent 3px,
            transparent 18px
        );
    opacity: 0.08;
}

/* === Fish Procession Border === */
.fish-procession-border {
    position: relative;
    height: 40px;
    overflow: hidden;
    z-index: 3;
}

.fish-procession-border::before,
.fish-procession-border::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 300%;
    height: 20px;
    background-repeat: repeat-x;
    background-size: 80px 20px;
}

.fish-procession-border::before {
    top: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='20' viewBox='0 0 80 20'%3E%3Cpath d='M60 10c0 0-8-8-22-8C40 2 44 5 44 10s-4 8-4 8c14 0 22-8 22-8z' fill='%236B1D2A' opacity='0.6'/%3E%3Cpath d='M8 5c-3 1.5-5 3.5-5 5s2 3.5 5 5c-2-2-3-3.5-3-5s1-3 3-5z' fill='%236B1D2A' opacity='0.6'/%3E%3C/svg%3E");
    animation: swim-right 30s linear infinite;
}

.fish-procession-border::after {
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='20' viewBox='0 0 80 20'%3E%3Cpath d='M20 10c0 0 8-8 22-8C40 2 36 5 36 10s4 8 4 8c-14 0-22-8-22-8z' fill='%233D8B7A' opacity='0.6'/%3E%3Cpath d='M72 5c3 1.5 5 3.5 5 5s-2 3.5-5 5c2-2 3-3.5 3-5s-1-3-3-5z' fill='%233D8B7A' opacity='0.6'/%3E%3C/svg%3E");
    animation: swim-left 30s linear infinite;
}

.fish-procession-border--reversed {
    background-color: var(--burgundy);
}

.fish-procession-border--reversed::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='20' viewBox='0 0 80 20'%3E%3Cpath d='M60 10c0 0-8-8-22-8C40 2 44 5 44 10s-4 8-4 8c14 0 22-8 22-8z' fill='%23FAF4EB' opacity='0.6'/%3E%3Cpath d='M8 5c-3 1.5-5 3.5-5 5s2 3.5 5 5c-2-2-3-3.5-3-5s1-3 3-5z' fill='%23FAF4EB' opacity='0.6'/%3E%3C/svg%3E");
}

.fish-procession-border--reversed::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='20' viewBox='0 0 80 20'%3E%3Cpath d='M20 10c0 0 8-8 22-8C40 2 36 5 36 10s4 8 4 8c-14 0-22-8-22-8z' fill='%23FAF4EB' opacity='0.5'/%3E%3Cpath d='M72 5c3 1.5 5 3.5 5 5s-2 3.5-5 5c2-2 3-3.5 3-5s-1-3-3-5z' fill='%23FAF4EB' opacity='0.5'/%3E%3C/svg%3E");
}

@keyframes swim-right {
    0% { transform: translateX(0); }
    100% { transform: translateX(80px); }
}

@keyframes swim-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-80px); }
}

/* ============================================================
   SPREAD 1: ENTRANCE HALL
   ============================================================ */
.spread--entrance {
    min-height: 120vh;
    background-color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.entrance__content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding-top: 8vh;
    padding-bottom: 4vh;
}

.entrance__text {
    padding-left: 2vw;
}

.entrance__title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(4rem, 10vw, 8rem);
    color: var(--burgundy);
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.entrance__subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--walnut);
}

.entrance__fish-container {
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.entrance__discus {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* ============================================================
   SPREAD 2: SPECIMEN ROOM I
   ============================================================ */
.spread--specimen-1 {
    min-height: 100vh;
    background-color: var(--parchment);
    padding-top: 6vh;
    padding-bottom: 6vh;
}

.specimen__heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--burgundy);
    margin-bottom: 0.8rem;
}

.specimen__intro {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--walnut);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    max-width: 600px;
    margin-bottom: 3rem;
}

.specimen__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.specimen-card {
    background: var(--cream);
    border: 4px solid var(--burgundy);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(28, 23, 20, 0.08);
}

.specimen-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.specimen-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(28, 23, 20, 0.15);
}

.specimen-card--tall {
    grid-row: span 2;
}

.specimen-card--wide {
    grid-column: span 2;
}

.specimen-card--double {
    grid-column: span 2;
}

.specimen-card--narrow {
    grid-row: span 1;
}

.specimen-card__image {
    width: 100%;
    overflow: hidden;
    background: var(--cream);
}

.specimen-card__image svg {
    width: 100%;
    height: auto;
    display: block;
}

.specimen-card__label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(0.65rem, 0.85vw, 0.8rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--soot);
    padding: 0.75rem 1rem 0.3rem;
}

.specimen-card__desc {
    font-family: 'Source Sans 3', sans-serif;
    font-size: clamp(0.8rem, 0.95vw, 0.92rem);
    color: var(--walnut);
    padding: 0.25rem 1rem 1rem;
    line-height: 1.5;
}

/* ============================================================
   SPREAD 3: READING ROOM
   ============================================================ */
.spread--reading {
    min-height: 130vh;
    background-color: var(--cream);
    padding-top: 8vh;
    padding-bottom: 8vh;
    position: relative;
}

.reading__content {
    display: grid;
    grid-template-columns: 58% 10% 32%;
    gap: 0;
}

.reading__main-column {
    padding-right: 2rem;
}

.reading__heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--burgundy);
    margin-bottom: 2rem;
}

.reading__body p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--soot);
    line-height: 1.72;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

/* Drop Cap */
.drop-cap {
    float: left;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 8rem;
    line-height: 0.8;
    color: var(--burgundy);
    padding-right: 0.15em;
    padding-top: 0.05em;
    position: relative;
}

.drop-cap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='50' rx='40' ry='38' fill='%236B1D2A' opacity='0.08'/%3E%3Cellipse cx='50' cy='48' rx='32' ry='30' fill='%238C2F3D' opacity='0.05'/%3E%3Ccircle cx='30' cy='45' r='5' fill='%231C1714' opacity='0.04'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

/* Margin Column */
.reading__margin-column {
    grid-column: 3;
    padding-left: 1.5rem;
    position: relative;
    overflow: hidden;
}

.reading__margin-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--copper);
    opacity: 0.3;
}

.reading__margin-note {
    margin-bottom: 2.5rem;
    padding-left: 1rem;
}

.margin-fish,
.margin-botanical {
    display: block;
    width: 70px;
    height: auto;
    margin-bottom: 0.5rem;
}

.margin-botanical {
    width: 50px;
    height: 100px;
}

.margin-annotation {
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(0.68rem, 0.8vw, 0.78rem);
    font-weight: 400;
    color: var(--walnut);
    line-height: 1.5;
    letter-spacing: 0.02em;
    display: block;
}

.margin-annotation em {
    font-style: italic;
}

/* Scale Tessellation Background */
.scale-tessellation {
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.scale-tessellation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 25% 25%, var(--parchment) 8px, transparent 8px),
        radial-gradient(circle at 75% 25%, var(--parchment) 8px, transparent 8px),
        radial-gradient(circle at 50% 50%, var(--parchment) 8px, transparent 8px),
        radial-gradient(circle at 0% 50%, var(--parchment) 8px, transparent 8px),
        radial-gradient(circle at 100% 50%, var(--parchment) 8px, transparent 8px);
    background-size: 40px 40px;
    opacity: 0.35;
    animation: scale-drift 45s linear infinite;
}

.scale-tessellation::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 25% 75%, var(--cream) 6px, transparent 6px),
        radial-gradient(circle at 75% 75%, var(--cream) 6px, transparent 6px),
        radial-gradient(circle at 50% 0%, var(--cream) 6px, transparent 6px);
    background-size: 40px 40px;
    opacity: 0.25;
}

@keyframes scale-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

/* ============================================================
   SPREAD 4: EXHIBITION HALL (Triptych)
   ============================================================ */
.spread--exhibition {
    min-height: 90vh;
    background-color: var(--cream);
    padding-top: 4vh;
    padding-bottom: 4vh;
    position: relative;
}

.exhibition__content {
    display: grid;
    grid-template-columns: 1fr 2px 1fr 2px 1fr;
    gap: 0;
    min-height: 80vh;
    align-items: stretch;
}

.exhibition__panel {
    position: relative;
    overflow: hidden;
}

.exhibition__panel--left {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    will-change: transform;
}

.exhibition__betta {
    width: 80%;
    max-width: 300px;
    height: auto;
}

.exhibition__divider {
    width: 2px;
    background: var(--burgundy);
    position: relative;
}

.exhibition__divider::before,
.exhibition__divider::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--burgundy);
}

.exhibition__divider::before {
    top: 25%;
}

.exhibition__divider::after {
    top: 75%;
}

.exhibition__panel--center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem;
}

.exhibition__heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.exhibition__text {
    font-family: 'Source Sans 3', sans-serif;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    color: var(--soot);
    line-height: 1.72;
    margin-bottom: 1.2rem;
}

.exhibition__panel--right {
    background: var(--parchment);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.ripple-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ripple-grid::before,
.ripple-grid::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--copper);
    opacity: 0;
    animation: ripple-expand 6s ease-in-out infinite;
}

.ripple-grid::before {
    top: 30%;
    left: 40%;
    width: 20px;
    height: 20px;
}

.ripple-grid::after {
    top: 60%;
    left: 60%;
    width: 20px;
    height: 20px;
    animation-delay: 3s;
}

@keyframes ripple-expand {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(15);
        opacity: 0;
    }
}

.exhibition__angelfish {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
}

/* Vine Borders */
.vine-border {
    position: absolute;
    top: 0;
    width: 30px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.vine-border--left {
    left: 0;
}

.vine-border--right {
    right: 0;
}

.vine-border svg {
    width: 100%;
    height: 100%;
}

.vine-path {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 2s ease-in-out;
}

.vine-path--active {
    stroke-dashoffset: 0;
}

/* ============================================================
   SPREAD 5: SPECIMEN ROOM II
   ============================================================ */
.spread--specimen-2 {
    min-height: 100vh;
    background-color: var(--cream);
    padding-top: 0;
    padding-bottom: 6vh;
    position: relative;
}

.spread--specimen-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 25%, var(--burgundy) 6px, transparent 6px),
        radial-gradient(circle at 75% 25%, var(--burgundy) 6px, transparent 6px),
        radial-gradient(circle at 50% 50%, var(--burgundy) 6px, transparent 6px),
        radial-gradient(circle at 0% 50%, var(--burgundy) 6px, transparent 6px),
        radial-gradient(circle at 100% 50%, var(--burgundy) 6px, transparent 6px);
    background-size: 60px 60px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.specimen2__content {
    position: relative;
    z-index: 2;
    padding-top: 5vh;
}

.specimen2__heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--burgundy);
    margin-bottom: 0.8rem;
}

.specimen2__intro {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--walnut);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    max-width: 600px;
    margin-bottom: 3rem;
}

.specimen2__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ============================================================
   SPREAD 6: OBSERVATION CHAMBER
   ============================================================ */
.spread--observation {
    min-height: 100vh;
    background-color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.observation__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 3rem;
    max-width: 800px;
}

.observation__quote {
    margin: 2rem 0;
}

.observation__quote p {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--cream);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.observation__ornament-top,
.observation__ornament-bottom {
    width: 120px;
    height: 2px;
    background: var(--copper);
    opacity: 0.5;
}

.observation__footer {
    margin-top: 4rem;
}

.observation__wordmark {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.observation__colophon {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--parchment);
    opacity: 0.4;
}

.observation__clownfish {
    position: absolute;
    bottom: 8%;
    right: 8%;
    width: 160px;
    height: auto;
    animation: float 8s ease-in-out infinite;
    z-index: 2;
}

.observation__clownfish svg {
    width: 100%;
    height: auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-12px) rotate(-1.5deg); }
}

/* === Vine Border Observation Variant === */
.vine-border--observation {
    z-index: 3;
}

/* ============================================================
   SCROLL-DRIVEN COUNTER-ANIMATION HELPERS
   ============================================================ */
.counter-drift-up {
    will-change: transform;
}

.counter-drift-down {
    will-change: transform;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .entrance__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .entrance__text {
        padding-left: 0;
        order: 1;
    }

    .entrance__fish-container {
        order: 2;
    }

    .entrance__discus {
        max-width: 350px;
    }

    .reading__content {
        grid-template-columns: 1fr;
    }

    .reading__margin-column {
        grid-column: 1;
        padding-left: 0;
        padding-top: 2rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .reading__margin-column::before {
        display: none;
    }

    .reading__margin-note {
        flex: 1 1 200px;
    }

    .scale-tessellation {
        width: 100%;
    }

    .exhibition__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .exhibition__divider {
        width: 100%;
        height: 2px;
    }

    .exhibition__divider::before {
        top: 50%;
        left: 20%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .exhibition__divider::after {
        top: 50%;
        left: 80%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .exhibition__panel--left {
        min-height: 40vh;
    }

    .exhibition__panel--right {
        min-height: 30vh;
    }

    .specimen__grid,
    .specimen2__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specimen-card--wide,
    .specimen-card--double {
        grid-column: span 2;
    }

    .specimen-card--tall {
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .spread__content {
        padding: 0 1.5rem;
    }

    .entrance__title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .specimen__grid,
    .specimen2__grid {
        grid-template-columns: 1fr;
    }

    .specimen-card--wide,
    .specimen-card--double {
        grid-column: span 1;
    }

    .exhibition__content {
        min-height: auto;
    }

    .exhibition__panel--center {
        padding: 2rem 1.5rem;
    }

    .nav-card {
        bottom: 1rem;
        right: 1rem;
    }

    .observation__clownfish {
        width: 100px;
        bottom: 4%;
        right: 4%;
    }

    .drop-cap {
        font-size: 5rem;
    }
}
