body {
    font-family: 'Open Sans', sans-serif;
    text-align: left;
    background: #3e3d3e;
    overflow-y: hidden;
    overflow-x: hidden;
}

.main {
    text-align: center;
    height: 100vh;
    overflow: auto;
}

.title {
    z-index: 999;
    margin-top: -10em;
}

h1 {
    font-family: 'Rubik Mono One', sans-serif;
    font-size: 14em;
    line-height: 1;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,.3);
}

@media (max-width: 1200px) {
    h1 {
        font-size: 13em;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 10em
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 6em;
    }
}

@media (max-width: 425px) {
    h1 {
        font-size: 4em;
    }
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    overflow: no-scroll;
  }