body {
    margin: 0;
    padding: 0;
    background: #454445;
    background-attachment: fixed;
    background-size: cover;
    font-family: Oswald, sans-serif;
}

/* The only rule that matters */
#video-background {
    /*  making the video fullscreen  */
    position: fixed;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -100;
    height: 100%;
    width: auto;
}

.landscape #video-background {
    left: 0 !important;
    transform: none !important;
    width: 100%;
    height: auto;
}

/* These just style the content */
article {
    /*  just a fancy border  */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

article:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: block;
    background: rgba(0,0,0,0.15);
    z-index: -99;
}

.content {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: 300;
    transform: translateY(-60%);
}

h1 {
    font-size: 36px;
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

.btn {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    display: block;
    text-decoration: none;
    margin: 0.5rem 1rem;
    padding: 0.5rem .75rem;
    letter-spacing: 1px;
    transition: color 0.5s ease, background-color 0.5s ease, transform 0.25s ease;
}

.btn i {
    padding-left: 0.25rem;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

@media screen and (min-width: 1680px) {
    #video-background {
        left: 50%;
        transform: translateX(-52%);
    }
}

@media screen and (max-width: 1680px) {
    #video-background {
        left: 50%;
        transform: translateX(-48%);
    }
}

@media screen and (max-width: 1024px) {
    #video-background {
        left: 50%;
        transform: translateX(-48%);
    }
}


@media screen and (max-width: 750px) {
    #video-background {
        left: 50%;
        transform: translateX(-40%);
    }
}

@media screen and (min-width: 550px) and (max-width: 750px) and (max-height: 420px) {
    #video-background {
        left: 0%;
        transform: none;
    }
}



@media screen and (min-width: 375px) {

    .btn {
        display: inline-block;
    }

    .btn+.btn {
        margin-left: 1rem;
    }

}

