.background {
	background-image: url("images/blank_wall.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

h1 {
	font-family: 'Codystar', cursive;
	letter-spacing: .2em;
	font-size: 35pt;
	text-shadow: 0px 8px 15px rgba(0,0,0,0.3);
	color: rgb(28, 2, 113);
	text-align: center;
	margin: 1em;
}

article {
	margin-top: 5vh;
	white-space: nowrap;
}

section {
	margin-top: 5em;
	width: 700px;
}

.resume {
	margin: 0;
}

nav ul {
	margin: 0;
  	padding-bottom: 3em;
  	list-style-type: none;
	display: flex;
 	justify-content: center;
	font-family: 'Amatic SC', cursive;
	font-size: 14pt;
}

nav ul li {
	font-size: 20pt;
	flex: 0 0 auto%;
	margin: .5em;
}

a:link {
	text-decoration: none;
	color:black;
}

a:visited {
	color: black;
}

a:hover {
	background-color: #E9D8BF;
	color:white;
	border-radius: 6px;
	padding:6px;
}

a:focus {
	color: white;
}

.labeled-art div,
article figure {
	display: inline-block;
	border: 6px solid #000;
	padding: 30px 20px 40px;
	background-color: rgb(250,250,245);
	box-shadow: 0px 8px 15px rgba(0,0,0,0.3), inset 0px 2px 4px rgba(0,0,0,0.2);
	vertical-align: middle;
	transform: scale(1);
}

.labeled-art {
	border: none;
	background-color: transparent;
	box-shadow: none;
}

.labeled-art figcaption { 
	margin: 40px auto 0;
	max-width: 12em;
	text-align: center;
	padding: .3em;
	box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	background-color: rgb(250,250,245);
	font-family: 'Chathura', sans-serif;
	font-size: 16pt;
}

article figure img {  /* Frames */
	display: block;
	width: 25vh;
	height: auto;
}

article figure:hover {
	transform: scale(1.25);
	transition: all .2s cubic-bezier(.22,.61,.36,1);
	z-index: 8;
}

footer {
	position: fixed;
	text-align: center;
	bottom: 0;
	left: 0;
	right: 0;
}


