.bungee-inline-regular {
    font-family: "Bungee Inline", serif;
    font-weight: 400;
    font-style: normal;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInWipe {
    0% {
        opacity: 0;
        clip-path: inset(0 0 100% 0);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

.hidden {
    display: none;
}

.final {
    animation: fadeInWipe 3s linear;
    animation-fill-mode: forwards;
    position: absolute;
    font-size: 12vw;
    white-space: nowrap;
    text-align: center;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.final span {
    display: block;
}

.lyric {
    position: absolute;
    font-size: 8vw;
    white-space: nowrap;
    text-align: center;
    transform: translate(-50%, -50%);
}

.color-blue {
    color: #0076B6;
}

.color-silver {
    color: #B0B7BC;
}

.color-white {
    color: #FFFFFF;
}

.color-black {
    color: #000000;
}

body {
    background-color: #0076B6;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.1) 0,
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px,
            transparent 20px),
        repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.1) 0,
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px,
            transparent 20px);
    background-size: 100px 100px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}