/* fullscreen setup */
html, body {
    /* give this to all tags from html to .fullscreen */
    height:100%;
}

body { 
    background-image: url(http://pealsmusic.com/green_river.jpg) ;
    background-position: center center;
    background-repeat:  no-repeat;
    background-attachment: fixed;
    background-size:  cover;
    background-color: #290429;
    margin: 0;
    padding: 0;  
}

  
/* .fullscreen, */
.wrapper {
    width:100%;
    height:100%;
/*     overflow:hidden; */
    display:table;
    text-align:center;
}

