/*/////////////////////////////////////////////
//// BEGIN: Homepage: Bless Your Heart Album
/////////////////////////////////////////////*/
body {
	position: relative;
	background: url('/wp-content/uploads/2020/05/background_20200521.jpg') no-repeat center center / cover #ccc;
	height: 100vh;
}

article {
    width: 100vw;
    height: 100vh;
}

.image-container {
	margin: 10% auto 15%;
}

.image-container img {
	width: 100%;
}

.album-container,
.share-container {
	position: absolute;
	top: 50%;
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* BEGIN: Album Container
------------------------------------------- */
.album-container {
    left: 7%;
    width: 20%;
}

.album-container img {
	width: 100%;
	box-shadow: 0 80px 50px -60px rgba(55, 55, 55, 0.84);
}

/* BEGIN: Social Container
------------------------------------------- */
.share-container {
	right: 7%;
}

.share-container ul {
	display: inline-block;
}

.share-container li {
	display: inline-block;
	margin-right: 15px;
}

.share-container li a {
	color: #C3A566;
	font-size: 50px;
	font-size: 3.65vw;
}

/*/////////////////////////////////////////////
//// BEGIN: Media Queries
/////////////////////////////////////////////*/

/* BEGIN: Hovers */
@media screen and (min-width: 768px) {

	a:hover,
	.share-container li a:hover {
		color: #030303;
		text-decoration: none;
	}
	
	.album-container img:hover,
	.share-container li:hover {
		transform: translateY(-3px);
		-webkit-transform: translateY(-3px);
		-moz-transform: translateY(-3px);
		-ms-transform: translateY(-3px);
		-o-transform: translateY(-3px);
		transition: all .25s ease-in-out;
		-webkit-transition: all .25s ease-in-out;
		-moz-transition: all .25s ease-in-out;
		-o-transition: all .25s ease-in-out;
		cursor: pointer;
	}
}


/* BEGIN: Mobile */
@media screen and (min-width: 961px) and (max-width: 1000px) {

	.share-container li {
		display: block;
		margin-bottom: 10px;
	}

	.share-container li a {
		font-size: 50px;
	}
}

/* BEGIN: Mobile */
@media screen and (max-width: 960px) {
	
	body {
		height: auto;
		padding-bottom: 15vw;
		background: url('/wp-content/uploads/2020/05/background.jpg') no-repeat center top / cover #ccc;
	}

	.mobile {
		display: block;
	}
	
	.album-container,
	.share-container {
		position: relative;
		top: auto;
		-o-transform: none;
		-ms-transform: none;
		-moz-transform: none;
		-webkit-transform: none;
		transform: none;
	}

	/* BEGIN: Album Container */
	.album-container {
		left: auto;
		width: 40%;
		margin: 10% auto;
	}

	/* BEGIN: Share Container */
	.share-container {
		right: auto;
	}

	.share-container ul {
		width: 100%;
		text-align: center;
	}

	.share-container li {
		margin: 0 2.5%;
	}

	.share-container li a {
		color: #303030;
		font-size: 10vw;
	}
}

/* BEGIN: Mobile */
@media screen and (max-device-width: 960px) {
	
	body {
		height: auto;
		padding-bottom: 0;
	}
}
/* FIN */