@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1');
.intro-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background: none;
}

.silverscreen-title {
    font-family: 'Instrument Serif', serif;
    font-size: 0;
    font-weight: bold;
    color: var(--coral);
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.silverscreen-title.shrink {
    margin-bottom: 1vw;
}

.silverscreen-title.shrink>.bubble {
    font-size: 6vw;
}

a {
    text-decoration: none;
    color: var(--coral);
}

.bubble {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px) scale(1.2);
    animation: bubble-rise 0.6s cubic-bezier(.68, -0.55, .27, 1.55) forwards;
    animation-delay: calc(var(--i) * 0.12s);
    margin: 0;
    font-size: 8vw;
    transition: font-size 0.8s cubic-bezier(.68, -0.55, .27, 1.55);
    white-space: pre;
}

@keyframes bubble-rise {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(1.2);
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

.intro-description {
    opacity: 0;
    transition: opacity 0.8s 0.2s;
    text-align: center;
    font-family: 'Instrument Serif', serif;
}

.intro-description.show {
    opacity: 1;
}

.desc-text {
    display: block;
    font-size: 2.5vw;
    color: #333;
    margin-bottom: 1vw;
}

.coming-soon {
    display: block;
    font-size: 2vw;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 1vw;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

#logo-reveal {
    transition: opacity 0.8s cubic-bezier(.68,-0.55,.27,1.55), transform 0.8s cubic-bezier(.68,-0.55,.27,1.55);
    opacity: 0;
    transform: scale(0.7);
    padding:0;
    margin:0;
}
.intro-description.show #logo-reveal {
    opacity: 1;
    transform: scale(1);
}
}

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

:root {
    --coral: #FF8559;
}

body {
    position: relative;
    z-index: 1;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    animation: coral-bleed 5s infinite ease-in-out;
}

@keyframes coral-bleed {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

@media (max-width: 600px) {
    body::before {
        background: none !important;
        opacity: 1 !important;
        animation: none !important;
    }
    .bubble {
        font-size: 18vw !important;
    }
    .silverscreen-title.shrink>.bubble {
        font-size: 15vw !important;
    }
    .desc-text {
        font-size: 5vw !important;
        width: 70vw !important;
        text-align: center !important;
        padding-top:3vw !important;
        padding-bottom: 3vw !important;
    }
    .coming-soon {
        font-size: 5vw !important;
    }
    #logo-reveal {
        width: 150px !important;
        height: 150px !important;
    }
}

/* dark mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #E0E0E0;
    }
    .intro-description {
        color: #E0E0E0;
    }
    .desc-text {
        color: #B0B0B0;
    }
    .coming-soon {
        color: #888888;
    }
}

