/*
 * Author: Carlos Alvarez
 * URL: http://alvarez.is
 *
 * Project Name: Minimal - Free Bootstrap 3 Theme
 * Version: 1.0
 * URL: http://blacktie.co
 */

body {
  background-color: #c7c5c5;
	font-family: 'Lato', sans-serif;
  	font-weight: 300;
    font-size: 16px;
    color: #555;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
}



.centered {
    text-align: center;
    color: #ed9c28;
}







h1 {
  font-family: 'Lato', sans-serif;
    font-weight: 300;
  color: #fff;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10%;
}
h2 {
  font-family: 'Lato', sans-serif;
    font-weight: 400;
  color: #fff;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0px;
  text-transform: none;
  margin-top: 0%;
}
a {
color: #9A552E;
text-decoration: none;
font-style: none;

}

a:hover {
  color: #fff;
}





.container {
  display: block;
  padding-top: 0px;
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.content {
  display: block;
  vertical-align: middle;
  top: 0px;
}


.logo {
	text-align: center;
	margin-top: 18px;
}









/* Responsive Full Background Image Using CSS
 * Tutorial URL: http://sixrevisions.com/css/responsive-background-image/
*/
body {
  /* Location of the image */
  background-image: url(../images/background-photo.png);
  
  /* 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:#c7c5c5;
  
  /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */
}




/* 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(../images/background-photo-mobile.png);
  }
  
  h1 {
	font-family: 'Lato', sans-serif;
    font-weight: 300;
	color: #fff;
	font-size: 24px;
	line-height: 28px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 10%;
}

}

