body {
    min-width: 100vw;
    min-height: 100vh;
    margin: 0;
}

p, h1, h2, h3, h4, h5, h6 {
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.075em;
}

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

.video-background video {
    position: fixed;
    left: 0;
    top: 0;
    min-width: 104vw;
    min-height: 100vh;
    filter: blur(4px);
}

.foreground {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100vw;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.8);
}

.content {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.title {
    font-size: 3rem;
    color: white;
}


.description {
    color: white;
}

@media screen and (max-width: 768px){
    .title {
        font-size: 3rem;
        color: white;
    }


    .description {
        color: white;
    }
}
