#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.central-phrase {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86%;
    padding: 0 48px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    z-index: 10;
    pointer-events: none;
    mix-blend-mode: difference;
}

.central-phrase__word {
    font-size: 23px;
    font-weight: 500;
    /* letter-spacing: 0.02em; */
    color: #d0d0d0;
}



/* ===== RESPONSIVE MOBILE ===== */

@media (max-width: 768px){

    .central-phrase {
        width: 100%;
        padding: 0 20px;
    }

    .central-phrase__word {
        font-size: 20px;
        letter-spacing: 0.03em;
    }

}