/* Assuming STATIC_URL=static/ under settings
   If you change static path change the following paths as well
*/

.header-image{
    background: transparent url("/static/mainapp/img/mountain.jpg") no-repeat;
    background-size: cover;
}

/* text style of header-image */
.header-image h2 {
    margin-top: 1vh;  /* 12px or 2vh USE vh FOR VARIABLE SIZE OBJECTS px FOR FIXED SIZE OBJECTS */
    margin-left: 0.5vw; /* 75px or 10vh */
    color:darkred;
}

/* text style of header-image */
.header-image h3 {
    margin-left: 2vw; /* 95px or 13vh */
    color:darkred;
}

.bg-black{
    background-color: black;
}

.body-image{
    background: transparent url("/static/mainapp/img/bg_gray.jpg") no-repeat;
    background-size: cover;	
}
	
