body, html {
    height: 100%;
    background-color: #000000;
    font-family: great-primer, sans-serif;
}

.bg {
    /* The image used */
    background-image: url("../images/bg_2.gif");

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


h1 {
    color: #EEEEEE;
}


/* CONTENT */

.bgImgCenter{
    position: relative;
    z-index: 1;

/*    width: 800px;*/
    height: 192px;
    margin: auto;
    width: 80%;
    padding: 10px;
    text-align: center;
}

.bgImgCenter:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/handshake.jpg) center center;
    opacity: .4;
}

.textContainer{
    position: relative;
    margin: auto;
    width: 80%;
    padding: 10px;
    text-align: left;
}

p {
    font-family: great-primer-small-caps;
    font-variant-caps: normal;
    color: #FFFFFF;
}



