body {
  font-family: Century Gothic, sans-serif;
}

.prints-section {
	display: flex;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

a {
	text-decoration: none;
}

.image-pane {
	margin: 3px;
	border-radius: 3px;
	box-shadow: 0 0 3px 3px #ccc;
	overflow: hidden;
}

.image-pane img {
	object-fit: cover;
	height: 30vw;
	width: 30vw;
}

.image-title {
	display: none;
}

.accent {
	display: none;
}

.social {
	position: fixed;
	bottom: 0;
	right: 0;
	display: flex;
}

.badge {
	border-radius: 100%;
	display:flex;
	justify-content: center;
	align-items: center;
	margin: 8px;
}

.email {
	/*box-shadow: 0 0 8px 2px #ccc;*/
	background-color: #333;
}

.email-glyph {
	background-image: url("../resources/icons/email.png");
	width: 80px;
	height: 60px;
	margin: 60px 45px;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.ig {
	/*box-shadow: 0 0 8px 2px #ccc;*/
	background-color: #DD27AB;
}

.ig-glyph {
	background-image: url("../resources/icons/ig-glyph.png");
	width: 80px;
	height: 80px;
	margin: 40px 45px;
	background-size: 100% auto;
}

.badge-text {
	display: none;
}

.mobile-title {
	font-size: 4.5rem;
	color: #333;
	margin: 15px 12px 20px 12px;
}

/* Photo Dialog Functionality */ 

.photos-dialog-background {
	height: 100vh;
	z-index: 1;
	background-color: white;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
}

.photo-dialog {
	background-color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.dialog-header {
	width: 100vw;
	display: flex;
	justify-content: flex-end;
	
}

.dialog-photo {
	width: 100vw;
}

.dialog-close {
	cursor: pointer;
	font-size: 94px;
	color: #444;
	margin-right: 34px;
}

.footer-line {
	display: flex;
  justify-content: space-between;
	font-size: 48px;
	color: #444;
	width: 90vw;
}

.dialog-title {
	font-style: italic;
}

.dialog-photo-container {
	display: flex;
	justify-content: center;
	margin-bottom: 36px;
}