body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #FF4313;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FF4313;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 10vw;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    line-height: 1;
    mix-blend-mode: multiply;
}

.kerning-fix {
    margin-right: 0.06em;
}

.kerning-fix2 {
    margin-right: 0.03em; 
}

.logo {
    position: absolute;
    z-index: 10;
    top: 3vw;
    left: 3vw;
}

@media (max-width: 768px) {
    h1 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 16vw;  
        line-height: 0.9;
    }

    .stretched-line {
        display: flex;
        justify-content: center;
        width: auto;
    }

    .spaced-out {
        letter-spacing: 0.08em;
    }
}