#container.bunnies-camp {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
}

#container.bunnies-camp > main {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

#container.bunnies-camp > main > .con {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
}

#container.bunnies-camp > main > .con > .img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#container.bunnies-camp > main > .con > .img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#lyrics {
    height: 340px;
    overflow-y: auto;
    padding: 20px 10px;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        white 15%,
        white 85%,
        transparent 100%
    );
}

@media (max-width: 600px) {
    #lyrics {
        height: 420px;
    }
}

.line {
    color: #ffffff90;
    font-size: 18px;
    padding: 6px 4px;
    transition: 0.25s;
    font-family: "SpotifyMix";
}

.line.active {
    color: #ffffff;
    font-weight: 600;
    transform: scale(1.03);
}

@font-face {
    font-family: "SpotifyMix";
    src: url("/fonts/spotify-mix.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
