/* =========================================================
   ABBIE — CINEMATIC BIRTHDAY EXPERIENCE
========================================================= */

:root {
    --pink: #ff4f9a;
    --pink-light: #ffb5d4;
    --pink-soft: #ff78b2;
    --purple: #8c5cff;

    --black: #050308;
    --white: #ffffff;

    --muted: rgba(255,255,255,0.52);

    --ease: cubic-bezier(.22,1,.36,1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: white;
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

button {
    font-family: inherit;
}

.hidden {
    display: none !important;
}


/* =========================================================
   GLOBAL BACKGROUND
========================================================= */

.background {
    position: fixed;
    inset: 0;
    z-index: -10;
    overflow: hidden;
    background:
        radial-gradient(
            ellipse at 50% 35%,
            rgba(255,50,135,.09),
            transparent 45%
        ),
        #050308;
}

.background::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.015) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.015) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: .16;
    animation: orbMove 18s infinite alternate ease-in-out;
}

.orb-one {
    width: 600px;
    height: 600px;
    background: #ff147f;
    left: -300px;
    top: -250px;
}

.orb-two {
    width: 500px;
    height: 500px;
    background: #6d36ff;
    right: -250px;
    top: 30%;
    animation-delay: -5s;
}

.orb-three {
    width: 600px;
    height: 600px;
    background: #ff3f9b;
    bottom: -400px;
    left: 30%;
    animation-delay: -10s;
}

@keyframes orbMove {

    0% {
        transform: translate3d(0,0,0) scale(1);
    }

    100% {
        transform: translate3d(100px,80px,0) scale(1.2);
    }

}

#starCanvas,
#vfxCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

#starCanvas {
    z-index: -8;
}

#vfxCanvas {
    z-index: 50;
}


/* =========================================================
   CURSOR GLOW
========================================================= */

.cursor-glow {
    position: fixed;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,70,150,.13),
            transparent 65%
        );

    transform: translate(-50%, -50%);

    pointer-events: none;

    z-index: 2;

    mix-blend-mode: screen;

    transition:
        left .08s linear,
        top .08s linear;
}


/* =========================================================
   TOP UI
========================================================= */

.top-ui {
    position: fixed;

    top: 30px;
    left: 35px;
    right: 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 100;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 4px;

    color: rgba(255,255,255,.55);
}

.brand-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--pink);

    box-shadow:
        0 0 10px var(--pink),
        0 0 25px var(--pink);
}

.top-date {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255,255,255,.3);
}


/* =========================================================
   INTRO OVERLAY
========================================================= */

.intro-overlay {
    position: fixed;
    inset: 0;

    z-index: 1000;

    background: #050308;

    display: grid;
    place-items: center;

    animation:
        introOut 1.4s
        2.2s
        forwards;
}

.intro-center {
    text-align: center;

    animation:
        introContent 2s
        forwards;
}

.intro-symbol {
    font-family: "Playfair Display", serif;

    font-size: 65px;

    color: var(--pink);

    filter:
        drop-shadow(
            0 0 20px
            rgba(255,70,150,.7)
        );

    animation:
        introHeart 1.5s infinite;
}

.intro-center p {
    margin-top: 20px;

    letter-spacing: 8px;

    font-size: 13px;

    color: white;
}

.intro-center span {
    display: block;

    margin-top: 13px;

    font-size: 8px;

    letter-spacing: 4px;

    color: rgba(255,255,255,.3);
}

@keyframes introContent {

    0% {
        opacity: 0;
        transform: scale(.9);
    }

    25% {
        opacity: 1;
        transform: scale(1);
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }

}

@keyframes introHeart {

    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

}

@keyframes introOut {

    to {
        opacity: 0;
        visibility: hidden;
    }

}


/* =========================================================
   COUNTDOWN HERO
========================================================= */

.scene {
    min-height: 100vh;
}

.countdown-scene {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;
}

.cinematic-content {
    width: min(1000px, 90%);

    display: flex;
    flex-direction: column;

    align-items: center;
}


/* =========================================================
   EYEBROW / INTRO MESSAGE
========================================================= */

.eyebrow {
    font-size: 9px;

    letter-spacing: 5px;

    font-weight: 600;

    color: rgba(255,255,255,.38);

    text-transform: uppercase;
}

.eyebrow span {
    color: var(--pink);
}


/*
   PERSONAL SIGNATURE
   "by your amazing boyfriend Leon ♡"
*/

.eyebrow small {
    display: block;

    margin-top: 13px;

    font-family: "Playfair Display", serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.5;

    letter-spacing: 1.2px;

    text-transform: none;

    color: rgba(255,181,212,.78);

    text-shadow:
        0 0 20px
        rgba(255,79,154,.25);

    animation:
        boyfriendGlow 3s ease-in-out infinite alternate;
}

@keyframes boyfriendGlow {

    from {
        opacity: .65;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(-2px);
    }

}


/* =========================================================
   HEART STAGE
========================================================= */

.heart-stage {
    position: relative;

    width: 330px;
    height: 330px;

    display: grid;
    place-items: center;

    margin: 15px 0 -10px;
}

.main-heart {
    position: relative;

    z-index: 5;

    width: 170px;
    height: 170px;

    display: grid;
    place-items: center;

    animation: mainHeart 2s infinite;
}

.main-heart span {
    font-family: Arial, sans-serif;

    font-size: 170px;

    line-height: 1;

    color: #ff4b98;

    filter:
        drop-shadow(
            0 0 10px
            rgba(255,50,140,.8)
        )
        drop-shadow(
            0 0 35px
            rgba(255,50,140,.6)
        )
        drop-shadow(
            0 0 90px
            rgba(255,50,140,.35)
        );
}

.heart-aura {
    position: absolute;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background: #ff3389;

    filter: blur(80px);

    opacity: .35;

    animation: aura 2s infinite;
}

.heart-pulse {
    position: absolute;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    border: 1px solid rgba(255,100,170,.3);

    animation:
        pulseRing 2.2s infinite;
}

.heart-rings {
    position: absolute;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    border: 1px solid rgba(255,100,170,.15);
}

.ring-one {
    animation:
        ring 4s infinite;
}

.ring-two {
    animation:
        ring 4s 1.3s infinite;
}

.ring-three {
    animation:
        ring 4s 2.6s infinite;
}

@keyframes mainHeart {

    0%,100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.09);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.05);
    }

}

@keyframes aura {

    0%,100% {
        transform: scale(.9);
        opacity: .25;
    }

    50% {
        transform: scale(1.3);
        opacity: .4;
    }

}

@keyframes pulseRing {

    0% {
        transform: scale(.8);
        opacity: .7;
    }

    100% {
        transform: scale(2.3);
        opacity: 0;
    }

}

@keyframes ring {

    0% {
        transform: scale(.7);
        opacity: 0;
    }

    20% {
        opacity: .6;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }

}


/* =========================================================
   TITLE
========================================================= */

.title-wrapper h1 {
    font-family: "Playfair Display", serif;

    font-weight: 400;

    font-size: clamp(
        70px,
        12vw,
        145px
    );

    line-height: .75;

    letter-spacing: -6px;

    background:
        linear-gradient(
            120deg,
            white,
            #ffc4dc 40%,
            #ff4f9b
        );

    -webkit-background-clip: text;
    color: transparent;

    text-shadow:
        0 0 60px
        rgba(255,100,160,.08);
}

.title-wrapper small {
    display: block;

    margin-top: 35px;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;

    letter-spacing: 7px;

    font-weight: 500;

    text-transform: uppercase;

    color: rgba(255,255,255,.35);
}


/* =========================================================
   COUNTDOWN
========================================================= */

.countdown {
    margin-top: 60px;

    display: flex;

    align-items: center;

    gap: 22px;
}

.time-unit {
    min-width: 80px;

    display: flex;

    flex-direction: column;

    align-items: center;
}

.time-unit strong {
    font-size: 34px;

    font-weight: 400;

    font-variant-numeric: tabular-nums;

    color: white;

    text-shadow:
        0 0 25px
        rgba(255,255,255,.15);
}

.time-unit span {
    margin-top: 8px;

    font-size: 7px;

    letter-spacing: 3px;

    color: rgba(255,255,255,.3);
}

.countdown i {
    font-style: normal;

    color: var(--pink);

    opacity: .6;

    font-size: 20px;

    animation: colon 1s infinite;
}

@keyframes colon {

    50% {
        opacity: .2;
    }

}


/* =========================================================
   DATE
========================================================= */

.date-line {
    margin-top: 40px;

    display: flex;

    align-items: center;

    gap: 20px;

    color: rgba(255,255,255,.25);

    font-size: 7px;

    letter-spacing: 4px;
}

.date-line .line {
    width: 55px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.2)
        );
}

.date-line .line:last-child {
    transform: rotate(180deg);
}


/* =========================================================
   SCROLL
========================================================= */

.scroll-indicator {
    margin-top: 75px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 12px;

    color: rgba(255,255,255,.25);

    font-size: 7px;

    letter-spacing: 4px;
}

.scroll-line {
    width: 1px;

    height: 45px;

    background:
        linear-gradient(
            to bottom,
            var(--pink),
            transparent
        );

    animation:
        scrollLine 2s infinite;
}

@keyframes scrollLine {

    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }

}


/* =========================================================
   BIRTHDAY HERO
========================================================= */

.birthday-scene {
    position: relative;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(255,50,140,.14),
            transparent 35%
        );
}

.birthday-hero {
    min-height: 100vh;

    position: relative;

    display: grid;
    place-items: center;

    text-align: center;

    overflow: hidden;
}

.birthday-light {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: var(--pink);

    filter: blur(180px);

    opacity: .16;

    animation:
        birthdayGlow 3s infinite alternate;
}

@keyframes birthdayGlow {

    to {
        transform: scale(1.5);
        opacity: .25;
    }

}

.birthday-content {
    position: relative;
    z-index: 2;
}

.birthday-heart {
    margin: 25px auto;

    position: relative;

    font-size: 130px;

    color: var(--pink);

    filter:
        drop-shadow(
            0 0 25px
            rgba(255,50,140,.8)
        )
        drop-shadow(
            0 0 100px
            rgba(255,50,140,.4)
        );

    animation:
        mainHeart 1.6s infinite;
}

.burst-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    border: 1px solid rgba(255,100,170,.3);

    transform:
        translate(-50%, -50%)
        scale(.5);

    animation:
        burst 3s infinite;
}

.burst-ring:nth-child(2) {
    animation-delay: 1s;
}

.burst-ring:nth-child(3) {
    animation-delay: 2s;
}

@keyframes burst {

    to {
        transform:
            translate(-50%, -50%)
            scale(3);
        opacity: 0;
    }

}

.birthday-hero h2 {
    font-family: "Playfair Display", serif;

    font-size:
        clamp(55px, 10vw, 125px);

    font-weight: 400;

    line-height: .85;

    letter-spacing: -5px;
}

.birthday-hero h2 span {
    display: block;

    color: var(--pink-light);

    text-shadow:
        0 0 60px
        rgba(255,70,150,.3);
}

.hero-message {
    margin-top: 35px;

    color: rgba(255,255,255,.55);

    line-height: 1.8;

    font-size: 15px;
}


/* =========================================================
   BUTTONS
========================================================= */

.luxury-button {
    margin-top: 45px;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 100px;

    padding: 16px 8px 16px 24px;

    display: inline-flex;

    align-items: center;

    gap: 25px;

    background:
        rgba(255,255,255,.06);

    backdrop-filter: blur(20px);

    color: white;

    cursor: pointer;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 3px;

    transition:
        transform .4s var(--ease),
        background .4s,
        box-shadow .4s;
}

.luxury-button:hover {
    transform: translateY(-5px);

    background:
        rgba(255,70,150,.15);

    box-shadow:
        0 20px 70px
        rgba(255,50,140,.2);
}

.button-arrow {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: var(--pink);

    font-size: 18px;
}


/* =========================================================
   CINEMATIC SECTIONS
========================================================= */

.cinematic-section,
.letter-section,
.love-meter-section {
    min-height: 100vh;

    width: min(1100px, 88%);

    margin: auto;

    position: relative;

    display: flex;

    align-items: center;
}

.section-number {
    position: absolute;

    left: 0;
    top: 100px;

    font-size: 9px;

    letter-spacing: 4px;

    color: rgba(255,255,255,.18);
}

.section-content {
    max-width: 750px;

    margin-left: 13%;
}

.section-content h3,
.meter-content h3 {
    margin-top: 30px;

    font-family: "Playfair Display", serif;

    font-weight: 400;

    font-size:
        clamp(50px, 8vw, 100px);

    line-height: .9;

    letter-spacing: -4px;
}

.section-content h3 span,
.meter-content h3 span {
    display: block;

    color: var(--pink-light);
}

.section-content p {
    max-width: 520px;

    margin-top: 30px;

    color: rgba(255,255,255,.48);

    line-height: 1.9;

    font-size: 16px;
}


/* =========================================================
   LETTER
========================================================= */

.letter-section {
    min-height: 120vh;
}

.letter-container {
    width: min(760px, 90%);

    margin-left: 13%;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.025)
        );

    border:
        1px solid
        rgba(255,255,255,.1);

    box-shadow:
        0 50px 150px
        rgba(0,0,0,.4);

    backdrop-filter: blur(25px);

    transform:
        perspective(1200px)
        rotateX(2deg);

    transition:
        transform 1s var(--ease);
}

.letter-container:hover {
    transform:
        perspective(1200px)
        rotateX(0deg)
        translateY(-8px);
}

.letter-top {
    padding: 20px 30px;

    display: flex;

    justify-content: space-between;

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

    color: var(--pink-soft);

    font-size: 8px;

    letter-spacing: 4px;
}

.letter {
    padding: 60px;
}

.letter-small {
    color: var(--pink-soft);

    font-size: 12px;

    margin-bottom: 20px;
}

.letter h3 {
    font-family: "Playfair Display", serif;

    font-size: 55px;

    font-weight: 400;

    margin-bottom: 35px;
}

.letter p {
    color: rgba(255,255,255,.57);

    line-height: 2;

    font-size: 15px;

    margin-bottom: 25px;
}

.signature {
    margin-top: 50px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    font-family: "Playfair Display", serif;

    font-size: 22px;
}

.signature strong {
    color: var(--pink-light);

    font-weight: 400;
}


/* =========================================================
   HUGE STATEMENT
========================================================= */

.statement-section {
    min-height: 100vh;

    position: relative;

    display: grid;

    place-items: center;

    text-align: center;

    overflow: hidden;
}

.statement-glow {
    position: absolute;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,50,140,.2),
            transparent 65%
        );

    filter: blur(30px);
}

.statement {
    position: relative;
    z-index: 2;
}

.statement-small {
    font-size: 8px;

    letter-spacing: 5px;

    color: rgba(255,255,255,.25);
}

.statement h3 {
    margin-top: 35px;

    font-family: "Playfair Display", serif;

    font-size:
        clamp(80px, 15vw, 190px);

    line-height: .75;

    font-weight: 400;

    letter-spacing: -8px;
}

.statement h3 span {
    display: block;

    color: var(--pink);

    text-shadow:
        0 0 80px
        rgba(255,50,140,.3);
}

.statement p {
    margin-top: 45px;

    color: rgba(255,255,255,.35);
}

.statement-heart {
    margin-top: 45px;

    color: var(--pink);

    font-size: 35px;

    animation:
        mainHeart 1.5s infinite;
}


/* =========================================================
   LOVE METER
========================================================= */

.love-meter-section {
    min-height: 110vh;

    justify-content: center;

    text-align: center;
}

.meter-content {
    width: min(700px, 100%);
}

.meter-content .eyebrow {
    justify-content: center;
}

.love-orb {
    width: 250px;
    height: 250px;

    margin: 60px auto 40px;

    position: relative;

    display: grid;

    place-items: center;
}

.orb-core {
    position: relative;

    z-index: 5;

    width: 100px;
    height: 100px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffb4d3,
            #ff3f8e
        );

    color: white;

    font-size: 42px;

    box-shadow:
        0 0 35px
        rgba(255,50,140,.6),
        0 0 100px
        rgba(255,50,140,.25);

    animation:
        orbBeat 1.5s infinite;
}

@keyframes orbBeat {

    50% {
        transform: scale(1.08);
    }

}

.orb-ring {
    position: absolute;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,90,160,.25);

    animation:
        orbitRing 4s infinite linear;
}

.orb-ring:nth-child(2) {
    width: 200px;
    height: 200px;

    animation-duration: 6s;
}

.orb-ring:nth-child(3) {
    width: 250px;
    height: 250px;

    animation-duration: 9s;
}

@keyframes orbitRing {

    from {
        transform: rotate(0deg) scale(.9);
        opacity: .2;
    }

    50% {
        opacity: .7;
    }

    to {
        transform: rotate(360deg) scale(1.1);
        opacity: .2;
    }

}

.meter-bar {
    width: 100%;

    height: 3px;

    background:
        rgba(255,255,255,.08);

    border-radius: 100px;

    overflow: hidden;
}

.meter-fill {
    width: 0;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #ff3d88,
            #ffb3d2
        );

    box-shadow:
        0 0 20px
        rgba(255,60,140,.8);

    transition:
        width 1.2s var(--ease);
}

.meter-text {
    margin-top: 20px;

    min-height: 20px;

    color: rgba(255,255,255,.4);

    font-size: 12px;
}

.small-button {
    margin-top: 25px;

    border:
        1px solid
        rgba(255,255,255,.15);

    background:
        rgba(255,255,255,.04);

    color: white;

    padding: 13px 25px;

    border-radius: 100px;

    font-size: 9px;

    letter-spacing: 3px;

    cursor: pointer;

    transition: .3s;
}

.small-button:hover {
    background:
        rgba(255,70,150,.15);

    border-color:
        rgba(255,70,150,.4);

    transform: translateY(-3px);
}


/* =========================================================
   FINALE
========================================================= */

.finale {
    min-height: 100vh;

    position: relative;

    display: grid;

    place-items: center;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255,50,140,.12),
            transparent 40%
        );
}

.finale-content {
    position: relative;
    z-index: 5;
}

.finale-heart {
    font-size: 75px;

    color: var(--pink);

    filter:
        drop-shadow(
            0 0 30px
            rgba(255,50,140,.8)
        );

    animation:
        mainHeart 1.5s infinite;
}

.finale h3 {
    margin-top: 35px;

    font-family: "Playfair Display", serif;

    font-size:
        clamp(55px, 9vw, 115px);

    font-weight: 400;

    line-height: .85;

    letter-spacing: -5px;
}

.finale h3 span {
    display: block;

    color: var(--pink-light);
}

.finale p {
    margin-top: 35px;

    color: rgba(255,255,255,.45);
}

.final-divider {
    width: 60px;
    height: 1px;

    margin: 40px auto;

    background:
        var(--pink);

    box-shadow:
        0 0 20px
        var(--pink);
}

.final-small {
    font-size: 7px;

    letter-spacing: 5px;

    color: rgba(255,255,255,.2);
}

.final-signature {
    margin-top: 30px;

    color: var(--pink);

    font-size: 28px;
}


/* =========================================================
   MUSIC
========================================================= */

.music-button {
    position: fixed;

    right: 30px;
    bottom: 30px;

    z-index: 100;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.05);

    backdrop-filter: blur(20px);

    color: white;

    cursor: pointer;

    transition: .3s;
}

.music-button:hover {
    background:
        rgba(255,70,150,.15);

    transform: scale(1.1);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .top-ui {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .top-date {
        display: none;
    }

    .heart-stage {
        transform: scale(.78);
        margin-top: -15px;
        margin-bottom: -30px;
    }

    .title-wrapper h1 {
        font-size: 78px;
        letter-spacing: -4px;
    }

    .title-wrapper small {
        font-size: 7px;
        letter-spacing: 4px;
    }

    .countdown {
        gap: 8px;
    }

    .time-unit {
        min-width: 58px;
    }

    .time-unit strong {
        font-size: 24px;
    }

    .countdown i {
        font-size: 15px;
    }

    .date-line {
        gap: 8px;
        font-size: 6px;
        letter-spacing: 2px;
    }

    .date-line .line {
        width: 25px;
    }

    .section-number {
        left: 0;
        top: 50px;
    }

    .section-content,
    .letter-container {
        margin-left: 0;
    }

    .cinematic-section,
    .letter-section,
    .love-meter-section {
        width: 84%;
    }

    .section-content h3,
    .meter-content h3 {
        font-size: 58px;
    }

    .letter {
        padding: 35px 25px;
    }

    .letter h3 {
        font-size: 43px;
    }

    .statement h3 {
        font-size: 90px;
        letter-spacing: -5px;
    }

    .birthday-hero h2 {
        font-size: 64px;
    }

    .birthday-heart {
        font-size: 100px;
    }

    .finale h3 {
        font-size: 65px;
    }

    /* Personal signature on phones */
    .eyebrow small {
        margin-top: 10px;
        font-size: 12px;
        letter-spacing: .8px;
        padding: 0 10px;
    }

}

@media (max-width: 420px) {

    .title-wrapper h1 {
        font-size: 65px;
    }

    .time-unit {
        min-width: 48px;
    }

    .time-unit strong {
        font-size: 21px;
    }

    .time-unit span {
        font-size: 5px;
    }

    .eyebrow small {
        font-size: 11px;
    }

}