/*
 * SERMONS Album Release Page - Rebuilt from Scratch
 * Clean, Modern Design with Proper Centering
 */

/* ============================================
   GLOBAL RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
    color: #fff;
    background: #0a0a0a;
    min-height: 100vh;
}

/* ============================================
   BACKGROUND VIDEO
   ============================================ */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}

.spotlight {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    transition: background 0.1s ease;
}

/* ============================================
   INTRO LYRICS ANIMATION
   ============================================ */
.intro-lyrics {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    pointer-events: none;
    padding-top: 15vh;
}

.lyrics-container {
    text-align: center;
    padding: 20px;
    max-width: 90%;
}

.lyric-phrase {
    font-size: 3.8rem;
    font-weight: 300;
    color: #fff;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);
    opacity: 0;
    display: inline-block;
    margin: 0 0.8rem;
    line-height: 1.8;
}

.lyric-phrase[data-order="1"] { 
    animation: lyricSequence1 18s ease-in-out forwards;
}
.lyric-phrase[data-order="2"] { 
    animation: lyricSequence2 18s ease-in-out forwards;
}
.lyric-phrase[data-order="3"] { 
    animation: lyricSequence3 18s ease-in-out forwards;
}
.lyric-phrase[data-order="4"] { 
    animation: lyricSequence4 18s ease-in-out forwards;
}
.lyric-phrase[data-order="5"] { 
    animation: lyricSequence5 18s ease-in-out forwards;
}
.lyric-phrase[data-order="6"] { 
    animation: lyricSequence6 18s ease-in-out forwards;
}

.lyric-break {
    display: block;
    height: 2rem;
}

.skip-intro {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: transparent;
    border: 1px solid rgba(222, 215, 191, 0.3);
    color: rgba(222, 215, 191, 0.6);
    font-size: 0.9rem;
    font-weight: 300;
    padding: 8px 20px;
    cursor: pointer;
    text-transform: lowercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    opacity: 0;
    animation: skipButtonFadeIn 0.5s ease-out 2s forwards;
    pointer-events: auto;
    border-radius: 2px;
    z-index: 201;
}

.skip-intro:hover {
    border-color: #ded7bf;
    color: #ded7bf;
    background: rgba(222, 215, 191, 0.1);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.content {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 20px 40px;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 700px;
    width: 100%;
}

.hidden-initially {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.visible {
    opacity: 1;
}

/* ============================================
   TYPOGRAPHY - PROPERLY CENTERED
   ============================================ */
.title {
    font-size: 12vw;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1s ease-out;
    margin-bottom: 15px;
    text-align: center;
}

.artist-name {
    font-size: 4.5vw;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1.1s ease-out;
    margin-bottom: 8px;
    text-align: center;
}

.sub-credit {
    font-size: 3vw;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1.2s ease-out;
    margin-bottom: 40px;
    text-align: center;
}

/* ============================================
   INFO GRID
   ============================================ */
.info-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInDown 1.4s ease-out;
}

.album-info {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.05em;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(222, 215, 191, 0.2);
    border-bottom: 1px solid rgba(222, 215, 191, 0.2);
    width: 100%;
}

.availability-text {
    font-size: 1.6rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.03em;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
}

.availability-text p {
    margin: 8px 0;
}

.availability-text-bottom {
    font-size: 1.35rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.03em;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
}

.availability-text-bottom p {
    margin: 8px 0;
}

/* ============================================
   PLATFORM ICONS
   ============================================ */
.platform-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.platform-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.platform-icon:hover {
    color: rgba(255, 255, 255, 0.98);
    transform: translateY(-3px);
}

.platform-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(222, 215, 191, 0.95);
    color: #2c2c2c;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.platform-icon::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    border: 6px solid transparent;
    border-top-color: rgba(222, 215, 191, 0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10;
}

.platform-icon:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
}

.platform-icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================
   COUNTDOWN
   ============================================ */
.countdown-intro {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.03em;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 15px 0 10px;
    padding: 15px 0 10px;
    border-top: 1px solid rgba(222, 215, 191, 0.2);
    width: 100%;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 10px 0;
}

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

.countdown-number {
    font-size: 2rem;
    font-weight: 500;
    color: #ded7bf;
    line-height: 1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-transform: lowercase;
    letter-spacing: 0.05em;
    margin-top: 5px;
}

.countdown-complete {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ded7bf;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    text-transform: lowercase;
}

/* ============================================
   RSVP CTA
   ============================================ */
.rsvp-cta {
    text-align: center;
    margin: 10px 0 10px;
    padding: 10px 0 20px;
    border-bottom: 1px solid rgba(222, 215, 191, 0.2);
    width: 100%;
}

.rsvp-cta p {
    font-size: 1.35rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.03em;
    margin: 10px 0 10px;
}

.rsvp-link {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ded7bf;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    padding: 8px 0;
}

.rsvp-link:hover {
    color: #fff;
    transform: translateX(5px);
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1.6s ease-out;
}

.accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.accordion-button {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2c2c2c;
    background: rgba(222, 215, 191, 0.85);
    border: 1px solid rgba(222, 215, 191, 0.4);
    padding: 18px 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(222, 215, 191, 0.95);
    color: #2c2c2c;
    box-shadow: none;
}

.accordion-button:hover {
    background: rgba(222, 215, 191, 1);
    color: #2c2c2c;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(222, 215, 191, 0.3);
}

.accordion-button::after {
    filter: brightness(0);
    opacity: 0.7;
}

.accordion-body {
    background: rgba(222, 215, 191, 0.75);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px;
    color: #2c2c2c;
}

/* ============================================
   PRE-ORDER SECTION
   ============================================ */
.preorder-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.album-cover-img {
    max-width: 300px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

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

.preorder-options h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.preorder-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 25px;
}

.preorder-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.spotify-save-btn,
.vinyl-preorder-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.spotify-save-btn {
    background: #1DB954;
    color: #fff;
}

.spotify-save-btn:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(29, 185, 84, 0.4);
}

.vinyl-preorder-btn {
    background: rgba(222, 215, 191, 0.9);
    color: #2c2c2c;
}

.vinyl-preorder-btn:hover {
    background: #ded7bf;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(222, 215, 191, 0.3);
}

.format-details {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.6);
}

.format-divider {
    margin: 0 10px;
}

/* ============================================
   FORMS
   ============================================ */
.vinyl-form-container {
    width: 100%;
    margin-top: 30px;
}

.form-divider {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    margin: 30px 0;
}

.vinyl-form-container h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.form-notice {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 25px;
}

.preorder-form,
.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', serif;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group select,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
    background: rgba(255, 255, 255, 0.8);
}

.submit-preorder-btn,
.submit-btn {
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: rgba(222, 215, 191, 0.9);
    color: #2c2c2c;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-preorder-btn:hover,
.submit-btn:hover {
    background: #ded7bf;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(222, 215, 191, 0.3);
}

/* ============================================
   RSVP SECTION
   ============================================ */
.rsvp-container {
    max-width: 500px;
    margin: 0 auto;
}

.event-details {
    text-align: center;
    margin-bottom: 30px;
}

.event-date-time h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.event-date-time p {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 25px;
}

.venue-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.venue-logo {
    max-width: 150px;
    height: auto;
}

.venue-address {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

.event-divider {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    margin: 30px 0;
}

.message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.message.success {
    background: rgba(29, 185, 84, 0.2);
    border: 1px solid rgba(29, 185, 84, 0.4);
    color: #1ed760;
}

.message.error {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #ff6b7a;
}

/* ============================================
   PHOTO GALLERY
   ============================================ */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.photo-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay i {
    font-size: 2rem;
    color: #fff;
}

.no-photos {
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    padding: 40px;
}

/* ============================================
   PHOTO LIGHTBOX
   ============================================ */
.photo-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.photo-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

#lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(222, 215, 191, 0.2);
    border: 1px solid rgba(222, 215, 191, 0.3);
    color: #ded7bf;
    font-size: 1.5rem;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2rem;
    padding: 5px 15px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(222, 215, 191, 0.3);
    color: #fff;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #ded7bf;
    font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(222, 215, 191, 0.2);
    animation: fadeInUp 1.8s ease-out;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: #ded7bf;
    transform: translateY(-2px);
}

.instagram-link i {
    font-size: 1.5rem;
}

.info-divider {
    width: 50px;
    height: 1px;
    background: rgba(222, 215, 191, 0.3);
}

.copyright-text {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes contentFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Phrase 1: 0-1.5s fade in, 1.5-2s visible, 2-3s fade out */
@keyframes lyricSequence1 {
    0% { opacity: 0; }
    8% { opacity: 1; }
    11% { opacity: 1; }
    17% { opacity: 0; }
    73% { opacity: 0; }
    78% { opacity: 1; }
    89% { opacity: 1; }
    100% { opacity: 0; }
}

/* Phrase 2: 3-4.5s fade in, 4.5-5s visible, 5-6s fade out */
@keyframes lyricSequence2 {
    0%, 17% { opacity: 0; }
    25% { opacity: 1; }
    28% { opacity: 1; }
    33% { opacity: 0; }
    73% { opacity: 0; }
    78% { opacity: 1; }
    89% { opacity: 1; }
    100% { opacity: 0; }
}

/* Phrase 3: 6-7.5s fade in, 7.5-8s visible, 8-9s fade out */
@keyframes lyricSequence3 {
    0%, 33% { opacity: 0; }
    42% { opacity: 1; }
    44% { opacity: 1; }
    50% { opacity: 0; }
    73% { opacity: 0; }
    78% { opacity: 1; }
    89% { opacity: 1; }
    100% { opacity: 0; }
}

/* Phrase 4: SLOW fade in/out like phrases 1-3 */
@keyframes lyricSequence4 {
    0%, 50% { opacity: 0; }
    58% { opacity: 1; }
    61% { opacity: 1; }
    67% { opacity: 0; }
    73% { opacity: 0; }
    78% { opacity: 1; }
    89% { opacity: 1; }
    100% { opacity: 0; }
}

/* Phrase 5: SLOW fade in/out like phrases 1-3 */
@keyframes lyricSequence5 {
    0%, 67% { opacity: 0; }
    73% { opacity: 1; }
    76% { opacity: 1; }
    78% { opacity: 1; }
    89% { opacity: 1; }
    100% { opacity: 0; }
}

/* Phrase 6: SLOW fade in, stays until final reveal */
@keyframes lyricSequence6 {
    0%, 68% { opacity: 0; }
    78% { opacity: 1; }
    89% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes lyricsFullFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes skipButtonFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .title {
        font-size: 15vw;
    }
    
    .artist-name {
        font-size: 6vw;
    }
    
    .sub-credit {
        font-size: 4vw;
    }
    
    .lyric-phrase {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .preorder-buttons {
        width: 100%;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 18vw;
    }
    
    .artist-name {
        font-size: 7vw;
    }
    
    .sub-credit {
        font-size: 5vw;
    }
    
    .lyric-phrase {
        font-size: 2rem;
    }
    
    .album-info,
    .availability-text,
    .countdown-intro,
    .rsvp-cta p {
        font-size: 1.1rem;
    }
    
    .rsvp-link {
        font-size: 1.2rem;
    }
    
    .skip-intro {
        bottom: 20px;
        right: 20px;
    }
}

@media (min-width: 1200px) {
    .title {
        font-size: 9vw;
    }
    
    .artist-name {
        font-size: 4vw;
    }
    
    .sub-credit {
        font-size: 2.5vw;
    }
}
