body, html {
    height: 100%;
    font-size:100%;
    background-color: rgb(0, 0, 0);
    overflow-y: hidden;
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
}
.bgImage{
    background-image: url("back.gif");
    /*filter: blur(8px);
    -webkit-filter: blur(8px);*/
    filter: brightness(50%);
    height : 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
.text{
    /*background-color: rgb(0, 0, 0);
    background-color: rgb(0, 0, 0, 0.4);*/
    color: white;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 60%;
    padding: 20px;
    text-align: center;
    font-family: 'Optima', sans-serif;
}
a:link {
    text-decoration: none;
    color: whitesmoke;
}
a:visited {
    text-decoration: none;
    color: whitesmoke;
}

/* Media Queries: Tablet Landscape */
@media screen and (max-width: 1060px) {
    #primary { width:67%; }
    #secondary { width:30%; margin-left:3%;}  
}

/* Media Queries: Tabled Portrait */
@media screen and (max-width: 768px) {
    #primary { width:100%; }
    #secondary { width:100%; margin:0; border:none; }
}

@media (min-width: 640px) { body {font-size:1rem;} } 
@media (min-width:960px) { body {font-size:1.2rem;} } 
@media (min-width:1100px) { body {font-size:1.5rem;} } 