* {
    margin: 0;
    padding: 0;
    font-family: 'Teko', sans-serif;
}

.col {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.banner h2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 300px;
    mix-blend-mode: multiply;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    letter-spacing: -5px;
}

@media screen and (max-width: 1366px) {
    .banner h2 {
        font-size: 230px;
    }
}

@media screen and (max-width: 850px) {
    .banner h2 {
        line-height: 200px;
    }
}

@media screen and (max-width: 580px) {

}

@media screen and (max-width: 457px) {
    .banner h2 {
        font-size: 140px;
        line-height: 140px;
    }
}

.footer {
    position: absolute;
    right: 0;
    bottom: 10px;
    display: flex;
}

.footer .logo {
    filter: grayscale(100%);
    transition: .4s;
}

.footer .logo:hover {
    filter: grayscale(0%);
}