@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
        
body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://picsum.photos/id/33/1920/1080');
}

.lyric-container {
    position: relative;
    width: 80%;
    max-width: 600px;
    height: 100vh;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.lyric-container::-webkit-scrollbar {
    display: none;
}

.lyric-line {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2.5rem;
    transition: opacity 0.2s ease-out;
    will-change: opacity;
    padding: 0.5rem 0;
    white-space: nowrap;
}