/* CSS Document */

body {
  /* Location of the image */
background-image:url("../_img/cover.jpg");
  
  /* Background image is centered vertically and horizontally at all times */
  background-position: center center;
  
  /* Background image doesn't tile */
  background-repeat: no-repeat;
  
  /* Background image is fixed in the viewport so that it doesn't move when 
     the content's height is greater than the image's height */
  background-attachment: fixed;
  
  /* This is what makes the background image rescale based
     on the container's size */
  background-size: cover;
  
  /* Set a background color that will be displayed
     while the background image is loading */
  background-color: #464646;
}


#centrado {
          font-family: 'Avenir Black';
    float: none;
    font-size: 5.1em;
    width: 800px;
    height: 100px;
    text-align: center;
    font-weight: normal;
    line-height: 1em;
    margin: 0px auto;
    clear: none;
    min-height: 97px;
    color: rgb(255, 255, 255);
	
	position:absolute;
	left:50%;
	top:50%;
	margin:-50px 0 0 -400px;
}
