@charset "utf-8";
/* CSS Document */

body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background: url("http://www.lesdaniels.net/assets/img/profile_bg.jpg") left top no-repeat;
  background-size: contain;
}

/* CONTENTS
-------------------------------------------------- */

main .container {
	margin-top: 50px;
}

main h2 {
	color: #D9B471;
}

main p {
	line-height: 1.75rem;
	margin-bottom: 30px;
}

/* PHOTOS
-------------------------------------------------- */

.img_wrap{
  width: 200px;
  height: 200px;
  margin: 0 0 12px 12px;
  overflow: hidden;
  cursor: pointer;
}
.img_wrap img{
  width: 100%;
  transform: scale(1.2);
  transition-duration: 0.5s;
}
.img_wrap:hover img{
  transform: scale(1.5);
  transition-duration: 0.5s;
}

@media (max-width: 767.98px) {
  /* Bump up size of carousel content */
	.img_wrap{
  	width: 180px!important;
  	height: 180px!important;
	}
}

