@font-face {
    font-family: Musashi;
    src: url(/assets/font/OPTICompit-Regular.otf);
}

* {
    margin: 0px;
    padding: 0px;
    text-align: center;
}

body {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.hidden {
    display: none;
}

.bfmContainer {
    height: 700px;
    position: absolute;
    z-index: 15;
    bottom: -150px;
    left: -300px;
    transform: translateX(-100vw);
    animation: bfmAni 3s linear 7s 1 normal forwards;
}

.bfm {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(1.1);
}

@keyframes bfmAni {
    from {
        transform: translateX(-100vw);
    }
    to {
        transform: translateX(0px);
    }
}

.videoContainer {
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 1;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contentContainer {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    position: relative;
    z-index: 10;
}

.brbContainer {
    font-family: Musashi;
    animation: brbAni 3s linear 7s 1 normal forwards;
    transform: translateY(-100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    margin-bottom: 50px;
}

@keyframes brbAni {
    from {
        transform: translateY(-100vw);
    }
    to {
        transform: translateY(0px);
    }
}

.brb {
    color: #ffffff;
    font-size: 2rem;
    text-shadow: 0px 0px 5px #000000;
    letter-spacing: 5px;
    text-indent: 5px;
    margin-bottom: -5px;
}

.rilik {
    color: #0000ff;
    font-size: 5rem;
    border-top: 10px solid #ff0000;
    border-bottom: 10px solid #ff0000;
    padding: 0px 0px;
    text-shadow: 0px 0px 5px #ffffff;
    letter-spacing: 20px;
    text-indent: 20px;
    line-height: 70px;
    padding-top: 5px;
}

.bfmLogo {
    height: 150px;
    position: absolute;
    filter: contrast(0) brightness(0);
    left:-125px;
    bottom: -20px;
}

.bgImgContainer {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 5;
}

.bgImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: bgAni 1s linear 0s 1 normal forwards;
    transform: translateX(100vw);
}

@keyframes bgAni {
    from {
        transform: translateX(100vw);
    }
    to {
        transform: translateX(0px);
    }
}

.clipContainer {
    width: 70vw;
    height: calc(70vw * 0.5625);
    transform: translateY(100vw);
    animation: clipAni 3s linear 7s 1 normal forwards;
}

.clipFrame {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes clipAni {
    from {
        transform: translateY(100vw);
    }
    to {
        transform: translateY(0px);
    }
}