@font-face {
	font-family: AmerAuth;
	src: url('resources/font/american_authors/amerauth.ttf');
  }
body {
  /* Location of the image */
  background-image: url(images/background.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:#464646;
  
  /* 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.jpg);
  }
  }
  

  /* Presentational style rules only
 * Not required
 */

html, body, .container {
  height: 100%;
}

/* Reset */
html, body, h1, p, a, div, section {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: 'Nixie One', cursive;
}

/* Basic */
body { 
  font: 18px/23px "Cantarell", sans-serif;
  color: #ffffff;
}

h1 {
  color: #efecec;
  font-size: 60px;
  line-height: 50px;
  font-weight: 400;
  margin-top: 20px;
  font-family: 'AmerAuth';
}

a {
  color: #ffffff;
}

p {
  margin: 0 0 15px 0;
}

.container {
  display: table;
  width: 100%;
  background-color: rgba(0,0,0,0.3);
}

.content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* Special */
.sub-title {
  margin: 50px auto;
  font-size: 25px;
  line-height: 23px;
  text-transform: uppercase;
}

.button {
  display: inline-block;
  padding: 6px 10px;
  color: #c7c7c7;
  border: 1px solid #c7c7c7;
  border-radius: 3px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  margin-bottom: 50px;
}



/* Media Queries */
@media only screen and (max-width: 340px) {
  
  .container {
    position: relative;
    display: block;
    float: left;
    vertical-align: baseline;
    margin: 0 auto;
    padding: 80px 0 0 0;
  }
  
  #more-content {
    float: left;
    margin-right: 10px;
    
  }
  
  body h1 {
    font-size: 18px;
    line-height: 23px;
    font-family: 'AmerAuth';
  } 
  
  .content, blockquote {  
    display: inline;
    margin: 0 auto;
    padding-top: 80px;
    vertical-align: baseline;
  }

  blockquote {
    width: 150px;
    margin: 15px auto;
    font-size: 16px;
    line-height: 21px;
    background-color: transparent;
  }

  blockquote cite {
    font-size: 14px;
    line-height: 19px;
  }

  .sub-title {
    font-size: 14px;
    line-height: 21px;
  }

  .button, p {
    max-width: 150px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 20px;
  }

  html, body, .container {
    height: auto;
  }
}

#socials{
  position: relative;
  top: 50px;
}
#socials a{
	height: 40px;
	width: 40px;
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 65px;  
  margin-right: 20px;
  margin-left: 20px;
  display: inline-block;
  text-decoration: none;

}

#clic_social_facebook{
	background-image: url('resources/social/facebook-icon-w.png');
}
#clic_social_facebook:hover{
	background-image: url('resources/social/facebook-icon-g.png');
}
#clic_social_insta{
	background-image: url('resources/social/insta-icon-w.png');
}
#clic_social_insta:hover{
	background-image: url('resources/social/insta-icon-g.png');
}
#clic_social_twitter{
	background-image: url('resources/social/pinterest-icon-w.png');
}
#clic_social_twitter:hover{
	background-image: url('resources/social/pinterest-icon-g.png');
}