:root {
    --gold-main: #B88A3C;
    --gold-light: #d4ae6a;
    --charcoal: #3E352D;
    --muted-brown: #6B5A4A;
    --ivory: #FDFBF7;
    --cream: #F5EFEB;
    --font-heading: 'Playfair Display', serif;
    --font-names: 'Great Vibes', cursive;
    --font-body: 'Lora', serif;
    --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
    /* Dynamic viewport height — works with mobile browser chrome */
    --vh: 1vh;
}

/* =====================================================
   RESETS & SCROLLBAR HIDE
   ===================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
#cinematic-wrapper::-webkit-scrollbar,
.content-overlay::-webkit-scrollbar {
    display: none;
}

body {
    background-color: #0d0a08;
    color: var(--ivory);
    font-family: var(--font-body);
}

/* =====================================================
   LAYOUT — Fullscreen app shell
   ===================================================== */
#app-container {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Rich Rajwadi dark background visible behind the phone wrapper on desktop */
    background: radial-gradient(ellipse at center, #2a201a 0%, #0d0a08 100%);
}

/* =====================================================
   CINEMATIC PHONE WRAPPER
   On desktop: shows as a phone-shaped 9:16 card centered on screen.
   On mobile:  expands to fill the entire screen (it's already a phone!).
   ===================================================== */
#cinematic-wrapper {
    position: relative;
    background-color: #000;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;

    /* Desktop: constrain to phone shape */
    height: 100vh;
    height: 100dvh;
    width: calc(100dvh * 9 / 16);
    max-width: 100vw;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.9), 0 0 20px rgba(184, 138, 60, 0.1);
}

/* Mobile: fill the full screen — no phone-frame constraint needed */
@media (max-width: 500px) {
    #cinematic-wrapper {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        max-width: 100vw;
        max-height: 100dvh;
        box-shadow: none;
    }
}

/* =====================================================
   SECTIONS — each section is one "screen page"
   ===================================================== */
.fullscreen-section,
.scroll-section {
    position: relative;
    width: 100%;
    /* Use auto-height with a minimum so very tall content never clips */
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

#main-content {
    display: block;
}

#main-content.hidden {
    display: none !important;
}

/* =====================================================
   VIDEO BACKGROUND
   ===================================================== */
.video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* =====================================================
   CONTENT OVERLAY
   ===================================================== */
.content-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    /* Grows with content so nothing clips */
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Generous vertical padding so text never touches edges */
    padding: 3rem 1.2rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.overlay-dark {
    background: rgba(0, 0, 0, 0.62);
}

.centered {
    justify-content: center;
    align-items: center;
}

.text-content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0.5rem 0.5rem;
}

.w-full {
    width: 100%;
}

/* =====================================================
   TYPOGRAPHY — Mobile-first sizes
   ===================================================== */
.heading-serif {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.decorative-name {
    font-family: var(--font-names);
    font-weight: 400;
    font-size: clamp(2.2rem, 8vw, 4rem);
    color: var(--gold-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.body-text {
    font-size: clamp(0.65rem, 2.8vw, 1rem);
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.subtitle {
    font-size: clamp(0.6rem, 2.4vw, 0.85rem);
    line-height: 1.6;
    letter-spacing: 1.5px;
    color: #e0d5c1;
    text-transform: uppercase;
}

.gold-text {
    color: var(--gold-main);
}

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

.large-text {
    font-size: clamp(1.2rem, 5vw, 2.2rem);
    letter-spacing: 3px;
}

.large-date {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    font-family: var(--font-heading);
}

.text-quote {
    font-size: clamp(0.75rem, 3vw, 1.1rem);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.5px;
}

.small-text {
    font-size: clamp(0.6rem, 2.2vw, 0.8rem);
    text-transform: none;
    color: #cccccc;
}

/* =====================================================
   SPACING
   ===================================================== */
.space-bottom {
    margin-bottom: 1rem;
}

.space-bottom-small {
    margin-bottom: 0.4rem;
}

.space-bottom-large {
    margin-bottom: 1.8rem;
}

/* =====================================================
   COUNTDOWN TIMER
   ===================================================== */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-top: 1px solid rgba(184, 138, 60, 0.3);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    color: var(--gold-light);
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e0d5c1;
    margin-top: 2px;
}

.countdown-separator {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 5vw, 1.8rem);
    color: var(--gold-main);
    margin-bottom: 12px;
    animation: pulse 2s infinite var(--ease-luxury);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* =====================================================
   INTERACTIVE ELEMENTS
   ===================================================== */
.luxury-btn {
    display: inline-block;
    padding: 10px 28px;
    background-color: transparent;
    border: 1px solid var(--gold-main);
    color: var(--gold-main);
    font-family: var(--font-heading);
    font-size: clamp(0.7rem, 2.8vw, 1rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s var(--ease-luxury);
    text-decoration: none;
    margin-top: 1rem;
}

.luxury-btn:hover {
    background-color: var(--gold-main);
    color: var(--ivory);
    box-shadow: 0 0 20px rgba(184, 138, 60, 0.4);
}

/* =====================================================
   SHOW / HIDE
   ===================================================== */
.hidden {
    display: none !important;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.fade-out {
    animation: fadeOut 2s var(--ease-luxury) forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.fade-up-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s var(--ease-luxury), transform 1.5s var(--ease-luxury);
}

.fade-up-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.15s;
}

.stagger-2 {
    transition-delay: 0.3s;
}

.stagger-3 {
    transition-delay: 0.45s;
}

/* =====================================================
   EVENTS GRID
   ===================================================== */
.events-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    margin-top: 0.8rem;
}

.event-card {
    width: 90%;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.8rem;
    border: 1px solid rgba(184, 138, 60, 0.3);
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

.img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 0.6rem;
    border: 1px solid var(--gold-main);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s var(--ease-luxury);
}

.event-card:hover .img-wrapper img {
    transform: scale(1.1);
}

/* =====================================================
   DRESS CODE
   ===================================================== */
.dress-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* =====================================================
   FAMILY GRID
   ===================================================== */
.family-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 0px;
}

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

/* =====================================================
   CONTACT
   ===================================================== */
.contact-numbers a {
    color: var(--ivory);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-numbers a:hover {
    color: var(--gold-main);
}

/* =====================================================
   AUDIO CONTROL — fixed to screen bottom-right
   ===================================================== */
#audio-control {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(184, 138, 60, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 138, 60, 0.5);
    color: var(--gold-light);
    cursor: pointer;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s var(--ease-luxury);
    padding: 0;
}

#audio-control:hover {
    background: rgba(184, 138, 60, 0.38);
    transform: scale(1.08);
    box-shadow: 0 0 16px rgba(184, 138, 60, 0.3);
}

#audio-control svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* =====================================================
   CHERRY BLOSSOM OVERLAY — fixed, covers entire screen
   ===================================================== */
#flower-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 500;
    /* No pointer-events so everything underneath stays clickable */
    pointer-events: none;
    opacity: 0;
    transition: opacity 2s var(--ease-luxury);
}

#flower-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =====================================================
   ENHANCEMENT 1 — ORNAMENT DIVIDER
   ===================================================== */
.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    margin: 0.8rem auto;
    color: var(--gold-main);
    opacity: 0.7;
}

.ornament-divider::before,
.ornament-divider::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
    animation: shimmerLine 3s ease-in-out infinite;
}

.ornament-divider span {
    font-size: 0.55rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-family: var(--font-heading);
}

@keyframes shimmerLine {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* =====================================================
   ENHANCEMENT 2 — WELCOME BUTTON HALO
   ===================================================== */
.open-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.btn-halo-ring {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(184, 138, 60, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: haloPulse 3s ease-in-out infinite;
}

.btn-halo-ring::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(184, 138, 60, 0.2);
    animation: haloPulse 3s ease-in-out infinite 0.4s;
}

.btn-halo-ring::after {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px solid rgba(184, 138, 60, 0.08);
    animation: haloPulse 3s ease-in-out infinite 0.8s;
}

.btn-halo-icon {
    font-size: 1.4rem;
    filter: drop-shadow(0 0 6px rgba(184, 138, 60, 0.8));
}

@keyframes haloPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

/* Gold shimmer sweep on the welcome button text */
#open-btn {
    background-image: linear-gradient(110deg,
            transparent 30%,
            rgba(255, 215, 120, 0.5) 50%,
            transparent 70%);
    background-size: 250% 100%;
    background-position: 100% 0;
    animation: btnShimmer 4s ease-in-out infinite;
}

@keyframes btnShimmer {
    0% {
        background-position: 150% 0;
    }

    60% {
        background-position: -50% 0;
    }

    100% {
        background-position: -50% 0;
    }
}

/* =====================================================
   ENHANCEMENT 3 — INVITATION CARD
   ===================================================== */
.invite-card {
    position: relative;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(184, 138, 60, 0.5);
    box-shadow:
        0 0 0 3px rgba(0, 0, 0, 0.6),
        0 0 0 5px rgba(184, 138, 60, 0.25),
        0 8px 30px rgba(0, 0, 0, 0.5);
    background: rgba(30, 20, 10, 0.45);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 2px;
    width: 100%;
}

/* Corner decorations */
.invite-card::before,
.invite-card::after {
    content: '✦';
    position: absolute;
    font-size: 0.65rem;
    color: var(--gold-main);
    opacity: 0.7;
}

.invite-card::before {
    top: 6px;
    left: 8px;
}

.invite-card::after {
    bottom: 6px;
    right: 8px;
}

/* =====================================================
   ENHANCEMENT 4 — COUNTDOWN PILLS & WAX SEAL
   ===================================================== */
.countdown-pill-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(184, 138, 60, 0.25);
}

.countdown-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(184, 138, 60, 0.1);
    border: 1px solid rgba(184, 138, 60, 0.35);
    border-radius: 8px;
    padding: 0.4rem 0.7rem;
    backdrop-filter: blur(8px);
    min-width: 52px;
    box-shadow: 0 0 10px rgba(184, 138, 60, 0.08);
}

.countdown-pill .countdown-value {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 5.5vw, 2rem);
    color: var(--gold-light);
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(212, 174, 106, 0.5);
    line-height: 1;
}

.countdown-pill .countdown-label {
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9b99a;
    margin-top: 3px;
}

.countdown-pill-sep {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-main);
    margin-bottom: 14px;
    animation: pulse 2s infinite var(--ease-luxury);
}

/* Wax Seal */
.wax-seal {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #7a1a1a, #3d0a0a);
    border: 2px solid rgba(184, 138, 60, 0.6);
    box-shadow:
        0 0 0 2px rgba(184, 138, 60, 0.2),
        0 4px 14px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    margin: 0.8rem auto;
    flex-shrink: 0;
}

.wax-seal-icon {
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 5px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.8));
}

.wax-seal-text {
    font-size: 0.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-family: var(--font-heading);
    margin-top: 2px;
    opacity: 0.9;
}

/* =====================================================
   ENHANCEMENT 5 — EVENTS TIMELINE
   ===================================================== */
.events-timeline {
    position: relative;
    width: 100%;
    padding: 0.5rem 0;
    margin-top: 0.8rem;
}

/* Central vertical line */
.events-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold-main) 10%, var(--gold-main) 90%, transparent);
    transform-origin: top center;
    animation: timelineDraw 1.5s var(--ease-luxury) forwards;
}

@keyframes timelineDraw {
    from {
        clip-path: inset(0 0 100% 0);
    }

    to {
        clip-path: inset(0 0 0% 0);
    }
}

.timeline-event {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
}

/* Central dot on the line */
.timeline-dot {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-light), var(--gold-main));
    border: 2px solid var(--charcoal);
    box-shadow: 0 0 10px rgba(184, 138, 60, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    z-index: 2;
    /* Center it on the timeline */
    margin-top: 0.3rem;
    position: relative;
}

.timeline-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(184, 138, 60, 0.25);
    border-radius: 6px;
    padding: 0.6rem;
    backdrop-filter: blur(6px);
    text-align: left;
}

.timeline-content .img-wrapper {
    height: 150px;
    margin-bottom: 0.5rem;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(184, 138, 60, 0.3);
}

.time-badge {
    display: inline-block;
    background: rgba(184, 138, 60, 0.2);
    border: 1px solid rgba(184, 138, 60, 0.4);
    border-radius: 20px;
    padding: 5px 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-family: var(--font-heading);
    margin-bottom: 0.3rem;
}

/* =====================================================
   ENHANCEMENT 6 — DRESS CODE SWATCHES
   ===================================================== */
.color-swatches {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(184, 138, 60, 0.4);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
}

.swatch:hover {
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(184, 138, 60, 0.5);
}

/* =====================================================
   ENHANCEMENT 7 — FAMILY DIVIDER & GLOW
   ===================================================== */
.family-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    width: 100%;
    flex-wrap: wrap;
}

.family-column {
    text-align: center;
    padding: 0 0.5rem;
    flex: 1;
    min-width: 120px;
}

.family-divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(to bottom, transparent, var(--gold-main) 20%, var(--gold-main) 80%, transparent);
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.family-divider::after {
    content: '◆';
    color: var(--gold-main);
    font-size: 0.6rem;
    background: var(--charcoal);
    padding: 2px 0;
}

/* Glow on "Sharing the Joy" */
.family-title-glow {
    text-shadow:
        0 0 20px rgba(184, 138, 60, 0.6),
        0 0 40px rgba(184, 138, 60, 0.3);
}

/* =====================================================
   ENHANCEMENT 8 — RSVP CONTACT CARDS
   ===================================================== */
.you-are-invited {
    font-family: var(--font-names);
    font-size: clamp(2rem, 8vw, 3rem);
    color: var(--gold-light);
    text-shadow:
        0 0 20px rgba(184, 138, 60, 0.7),
        0 0 40px rgba(184, 138, 60, 0.3);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.contact-cards-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    /* width: 100%; */
    margin-top: 0.8rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: fit-content;
    background: rgba(184, 138, 60, 0.07);
    border: 1px solid rgba(184, 138, 60, 0.25);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    backdrop-filter: blur(8px);
    text-decoration: none;
    color: var(--ivory);
    transition: all 0.3s var(--ease-luxury);
}

.contact-card:hover {
    background: rgba(184, 138, 60, 0.18);
    border-color: rgba(184, 138, 60, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(184, 138, 60, 0.2);
    color: var(--gold-light);
}

.contact-card-icon {
    font-size: 1rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(184, 138, 60, 0.15);
    border: 1px solid rgba(184, 138, 60, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-info {
    text-align: left;
}

.contact-card-label {
    font-size: 0.55rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-main);
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 1px;
}

.contact-card-number {
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    color: var(--ivory);
    letter-spacing: 1px;
}