.background-video {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

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

.background-video > .overlay {
    z-index: 1;
}

.background-video > video {
    z-index: 0;
}

.main {
    margin-top: 60px;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main .title {
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
    letter-spacing: 1px;
    white-space: nowrap;
}

.main .content {
    text-align: center;
    line-height: 25px;
    max-width: 600px;
}

.app {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: auto;
}

.app .title {
    text-align: center;
}

.app .links {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 8px;
}

.app .links > *:first-child {
    margin-right: 16px;
}


@media (min-width: 768px) {
    .main .title br {
        display: none;
    }
    
    .main .title {
        font-size: 2.1em
    }
    
    .main .content {
        font-size: 1.2em;
        max-width: 900px;
        line-height: 30px;
    }
    
    
    .app {
        display: none;
    }
}


