@import url('https://fonts.googleapis.com/css?family=Cabin+Sketch');
body {
  background: #ffffff;
}
header {
  margin: 2em 0;
  height: 2em;
  font-family: 'Cabin Sketch', cursive;
}
h1 {
  float: left;
  margin: 0;
}

.hero_area{
	background-image: linear-gradient(rgba(1, 41, 53,0), rgba(1, 41, 53,0)), url(../img/gallery.jpg);
    color: white;
    background-size: cover;
	background-position: center;
}

div.photopile-wrapper {
  margin: 75px auto;
}

.quote{
  background-image: linear-gradient(rgba(1, 41, 53, 0.9), rgba(1, 41, 53,.9)), url(../img/quote.jpg);
  background-size: cover;
background-position: center;
  color: white;
  font-family: 'Lato', sans-serif;
}

.quote p{
  font-size: 200%;
  padding: 0;
  margin: 0;
}

/*------------ footer ------------*/
footer{
  width: 100%;
  background-color: rgb(27, 10, 5);
}

.footer_nav{
  color:#B2ACB0;
  transition: all 0.5s;
}

.footer_nav:hover{
  color: rgb(255, 208, 0) ;
}

.icons{
  color: rgb(27, 10, 5);
  font-size: 20px;
  background-color: rgb(255, 208, 0);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  line-height: 50px;
  transition: all 0.5s;
  margin: 0 10px;
}

.icons:hover{
  transform: scale(1.2);
  background-color: #B2ACB0;
}

.createdBy{
  font-size: 15px;
}

@media only screen and (max-width: 600px){
  .d-logo{
    display: none;
 }

 .d-text{
     width: 140px;
 }
  
  footer{
      height: 600px;
  }

  .footer_nav{
      text-align: center;
      padding: 12px 5px;
  }

  .icons{
      margin: 0 5px;
      width: 40px;
      height: 40px;
      line-height: 40px;
  }

  .quote p{
      font-size: 120%;
  }

  .footer_nav{
      font-size: 75%;
  }

}