/* Responsive Full Background Image Using CSS
 * Tutorial URL: http://sixrevisions.com/css/responsive-background-image/
*/
body {
  /* Location of the image */
  background-image: url(race2hugoplain.jpg);
  
  /* Image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Image doesn't repeat */
  background-repeat: no-repeat;
  
  /* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based on its container's size */
  background-size: cover;
  
  /* Pick a solid background color that will be displayed while the background image is loading */
  background-color:#000000;
  
  /* SHORTHAND CSS NOTATION
   * background: url(race2hugoplain.jpg) center center cover no-repeat fixed;
   */

}

p {font-family:'Andika New Basic',arial,sans-serif; font-size: 12px; color: #ffffff;}
h1 {font-family:'Andika New Basic',arial,sans-serif; font-size: 64px; font-weight: bold; color: #ffffff; text-align:center;}
h2 {font-family:'Andika New Basic',arial,sans-serif; font-size: 40px; font-weight: bold; color: #ffffff; margin-left:60%;}
h3 {font-family:'Andika New Basic',arial,sans-serif; font-size: 34px; font-weight: bold; color: #ffffff; margin-left:60%;}
div.dropped {text-align:left; margin-top:30%;}
p.dropped {font-family:'Andika New Basic',arial,sans-serif; font-size: 12px; color: #ffffff;}
h2.dropped {font-family:'Andika New Basic',arial,sans-serif; font-size: 40px; font-weight: bold; color: #ffffff; margin-left:60%;}
h3.dropped {font-family:'Andika New Basic',arial,sans-serif; font-size: 34px; font-weight: bold; color: #ffffff; margin-left:60%;}
a.dropped {color:#ffffff;}
a:hover.dropped {color:#ffffff;}
a:active.dropped {color:#ffffff;}
a:visited.dropped {color:#ffffff;}
a:-webkit-any-link {
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
}

/* For mobile devices */
@media only screen and (max-width: 767px) {
  body {
    /* The file size of this background image is 93% smaller
     * to improve page load speed on mobile internet connections */
    background-image: url(race2hugoplain.jpg);
  }
p {font-family:'Andika New Basic',arial,sans-serif; font-size: 12px; color: #ffffff;}
h1 {font-family:'Andika New Basic',arial,sans-serif; font-size: 48px; font-weight: bold; color: #ffffff; text-align:center;}
h2 {font-family:'Andika New Basic',arial,sans-serif; font-size: 38px; font-weight: bold; color: #ffffff; margin-left:60%;}
h3 {font-family:'Andika New Basic',arial,sans-serif; font-size: 28px; font-weight: bold; color: #ffffff; margin-left:60%;}
div.dropped {margin-top:30%;}
p.dropped {font-family:'Andika New Basic',arial,sans-serif; font-size: 12px; color: #ffffff;}
h2.dropped {font-family:'Andika New Basic',arial,sans-serif; font-size: 38px; font-weight: bold; color: #ffffff; margin-left:60%;}
h3.dropped {font-family:'Andika New Basic',arial,sans-serif; font-size: 28px; font-weight: bold; color: #ffffff; margin-left:60%;}
a.dropped {color:#ffffff;}
a:hover.dropped {color:#ffffff;}
a:active.dropped {color:#ffffff;}
a:visited.dropped {color:#ffffff;}
	}