@import url('https://fonts.googleapis.com/css2?family=Rajdhani&family=Teko:wght@300;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #000;
    font-family: 'Teko', sans-serif;
    /* font-family: 'Bebas Neue', cursive; */
}

.banner {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner h1 {
    width: 100%;
    height: 100%;
    background: #000;
    font-size: 15vw;
    text-transform: uppercase;
    font-weight: 500;
    mix-blend-mode: hard-light;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 7vw;
    z-index: 10;
}

.banner h1 .title {
    cursor: pointer;
    text-decoration: none;
    color: #333;
    text-align: center;
}

.banner h1 .title span {
    transition: 0.5s;
}

.banner h1 .title span:nth-child(1) {
    margin-right: 7px;
}

.banner h1 .title span:nth-child(4) {
    font-size: 5vw;
    color: #555;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    text-transform: none;
}

.banner h1 .title span:nth-child(1) {
    color: #999;
    letter-spacing: 0.3vw;
}

.banner h1 .title span:nth-child(2) {
    margin-left: 3vw;
    color: #fff;
    text-shadow: 0 0 10px #c0c0c0,
                 0 0 60px #fff,
                 0 0 120px #fff;
}

@media (min-width: 992px) {
    .banner h1 {
        line-height: 6vw;
    }
    .banner h1 .title span:nth-child(1) {
        color: #333;
        letter-spacing: inherit;
    }

    .banner h1 .title span:nth-child(2) {
        color: #333;
        text-shadow: none;
    }

    .banner h1 .title span:nth-child(4) {
        color: #222;
        font-size: 4vw;
    }

    .banner h1 .title:hover span:nth-child(1) {
        color: #999;
        letter-spacing: 0.3vw;
    }

    .banner h1 .title:hover span:nth-child(2) {
        margin-left: 3vw;
        color: #fff;
        text-shadow: 0 0 10px #c0c0c0,
                    0 0 60px #fff,
                    0 0 120px #fff;
    }

    .banner h1 .title:hover span:nth-child(4) {
        color: #555;
    }
}