html {
    background-color: black;
}

html, body, .content, .background {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.content, .background {
    height: 100vh;
}

.background {
    z-index: 0;
    background-image: url('../assets/images/landing-cfb.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(5px) grayscale(100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
}

.content {
    position: relative;
    z-index: 9999;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 10px;
    width: calc(100vw - 20px);
}

img {
    width: 75%;
}

p {
    margin: 0;
}

.header {
    font-size: 22px;
    text-transform: uppercase;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    max-width: 70%;
    margin: 30px auto 10px auto;
}

.copy {
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    background-color: rgba(0,0,0,0.8);
    max-width: 400px;
    padding: 40px;
    margin: auto;
    box-shadow: 0px 0px 20px 0px #000000;
    font-size: 16px;
}

@media (max-width: 420px){
    .header {
        max-width: 100%;
        font-size: 16px;
    }

    .copy {
        font-size: 12px;
    }
}