*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
    
}
a{
    text-decoration: none;
    color: white;
}
#photos{
	display: flex;
	/* justify-content: center; */
	align-items: center;
	flex-wrap: wrap;
}
.photo{
	width: 350px;
	height: 350px;
	margin: 10px;
	position: relative;
	overflow: hidden;
	box-shadow: 2px 2px 3px 2px #d2cece;
	border-radius: 5px;
	/* display: none; */
}

#gallery-card{
	height: 100%;
	width: 100%;
}
#photos img{
	width: 100%;
	height: 100%;
}
.photo .content{
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 1s 0.5s;

}
/* .photo .content h3{
	color: white;
} */
.photo .content h3{
	color: white;
	font-family: 'Montserrat', sans-serif;

}
.photo:before{
	content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: -100%;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all .8s;
}
.photo:hover before{
	left: 100%;
}
.photo:hover .content{
	left: 0;
}
.photo:hover:before{
	left: 0;
}
.btn-danger{
	font-weight: bolder;
	border-radius: 8px;
}



