body {	
	font-family: Century Gothic, sans-serif;
}

.prints-section {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	justify-content: center;
}

.image-pane {
	height: 300px;
	min-width: 200px;
	padding: 18px;
  margin: 15px 13px;
  box-shadow: 0 1px 8px 8px rgba(60, 60, 60, .2);
}

.image-pane:hover {
	cursor: pointer;	
  box-shadow: 0 1px 10px 10px rgba(60, 60, 60, .3);
}

.image-pane img {
	height: 300px;
}

.image-title {
	display: none;
}

.accent {
	width: 250px;
	padding: 18px;
	background-color: #444;
	height: 300px;
	margin: 15px 13px;
	color: white;
	font-size: 24px;
}

.accent-title {
	background-color: #111;
	font-size: 44px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.language-links {
	font-size: 16px;
	display:flex;
	justify-content: flex-end;
}

.language-links a {
	color: white;
}

.social {
	position: fixed;
	bottom: 0;
	right: 0;
	height: 100px;
	display: flex;
	z-index: 100; /* Social buttons should be elevated above everything */
}

.badge {
	border-radius: 100%;
	display:flex;
	justify-content: center;
	align-items: center;
	margin: 8px;
	max-width: 80px;
	transition: max-width .8s linear;
	
}

a.badge {
	text-decoration: none;
}

.email {
	/*box-shadow: 0 0 8px 2px #ccc;*/
	background-color: #333;
}

.email-glyph {
	background-image: url("../resources/icons/email.png");
	width: 40px;
	height: 30px;
	margin: 30px 20px;
	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: 40px;
	height: 40px;
	margin: 20px;
	background-size: 100% auto;
}

.badge:hover {
	border-radius: 20px;	 
	/* Arbitary max width allows animation on auto values without specifying width. */
	max-width: 500px;
}

.badge:hover .email-glyph {
	display: none;
}

.badge:hover .ig-glyph {
	display: none;
}

.badge-text {
	display: none;
	text-decoration: none;
	color: white;
	font-size: 20px;
}

.badge:hover .badge-text {	
	display: block;
	margin: 0 15px;
}

.mobile-title {
	display: none;
}

/* Photo Dialog Functionality */ 

.photos-dialog-background {
	height: 100vh;
	z-index: 1;
	background-color: rgba(50,50,50,.5);
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	justify-content: center;
	align-items: center;
}

.photo-dialog {
	background-color: white;
	padding: 24px;
	border-radius: 3px;
}

.dialog-header {
	display: flex;
	justify-content: flex-end;
	
}

.dialog-photo {
	min-height: 60vh;
	max-height: 80vh;
}

.dialog-close {
	cursor: pointer;
	font-size: 20px;
	color: #444;
	margin-bottom: 12px;
}

.footer-line {
	display: flex;
  justify-content: space-between;
	margin: 12px 5px 0;
	font-size: 20px;
	color: #444;
}

.dialog-title {
	font-style: italic;
}

.dialog-photo-container {
	display: flex;
	justify-content: center;
}