/* Responsive Full Background Image Using CSS */
html {
	height:100%;
	min-height:100%;
}
 
body {
	min-height:100%;
	background-color:#464646;
    background: url('under.jpg') no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='under.jpg', sizingMethod='scale')";
}

.content {
	position: absolute;
	right: 10px;
	color: #db0000;
}

h1 {
	font-size: 2.0em;
}

h2 {
	font-size: 1.3em;
}


/* For mobile devices 769px */
@media only screen and (min-width : 280px) and (max-width : 420px) {
  body {
    /* The file size of this background image is 93% smaller
     * to improve page load speed on mobile internet connections */
	-webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
  }
  .content {
	position: absolute;
	right: 10px;
	color: #000000;
}
}
