/* full page */

.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

body {
	margin: 0;
	padding: 0;
	color: #000;
	font-family: "Georgia", serif;
	background-color: #fff;
	background-image: url("/lab/img/watercolor.jpg");
}

a {
	text-decoration: none;
	color: inherit;
	background-color: inherit;
}

/* header */

header {
	margin: 0;
	padding: 0;
	height: auto;
	width: 100%;
	min-width: 860px;
	position: relative;
	background: 10px 5px url("/lab/img/logo.png") no-repeat;
	background-color: rgba(255,255,255,.75);
}

#headerLeft {
	margin-left: 120px;
	width: 300px;
	text-align: left;
}

#name {
    font-size: 36pt;
    border-bottom: 1px solid #000;
}

#title {
    font-size: 30pt;
}

#headerRight {
	position: absolute;
	top: 5px;
	right: 10px;
}

#socialMedia {
	display: grid;
	grid-column-gap: 5%;
}

#facebook {
	grid-row: 1;
	grid-column: 1;
}

#youtube {
	grid-row: 1;
	grid-column: 2;
}

#twitter {
	grid-row: 2;
	grid-column: 1;
}

#tumblr {
	grid-row: 2;
	grid-column: 2;
}

nav {
	height: auto;
	min-width: inherit;
	margin-top: 15px;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	background-color: #fff;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.navLink {
	font-size: 17pt;
	padding: 0px 20px 0px;
	
}

nav a:hover, #currentPage {
	color: #fff;
	background-color: #7f7f7f;
	font-size: 17pt;
	padding: 0px 20px 0px;
}

/* sticky header */

.sticky {
	position: fixed;
	top: -15px;
	width: 100%;
	z-index: 1000;
}

.sticky + #resume + #gallery {
	padding-top: 25px;
}

footer {
	position: static;
	bottom: 15px;
	margin-top: 25px;
	font-size: 10pt;
	font-style: normal;
}

/* gallery */

.sectionHeader {
	color: #fff;
	font-size: 24px;
	padding: 4px 20px;
	border: 1px solid #000;
	background-color: #7f7f7f;
}

#gallery {
	margin-top: 5%;
	margin-left: 5%;
	margin-right: 5%;
}

.thumbs {
	margin-bottom: 5%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.thumbs img {
	display: block;
	margin: 20px;
	padding: 10px;
	border: 1px solid #000;
	background-color: #7f7f7f;	
}

.thumbs img:hover {
	cursor: pointer;		
}

/* demo reel */

li.animThumbs {
	display: block;
	margin: 20px;
	padding: 10px;
	height: 72px;
	width: 94px;
	border: 1px solid #000;
	background-color: #7f7f7f;
}

ul.thumbsDemo {
	margin: 0px;
	padding: inherit;
	display: flex;
	justify-content: center;
}

video, iframe {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 25px;
	border: 1px solid #000;
	background-color: #7f7f7f;
}

/* shot breakdown */

.shotBreakdown {
	color: #fff;
	font-family: "Times New Roman", serif;
	font-size: 12pt;
	text-align: left;
	width: 560px;
	margin-left: inherit;
	margin-right: inherit;
	padding: 25px;
	border: 1px solid #000;
	background-color: #7f7f7f;
}

.shotBreakdown, .shotDisc {
	list-style-type: none;
}

.shotDisc {
	margin-bottom: 16px;
}

/* animations */
.thumbs img:hover, li.animThumbs:hover {
	transition: .25s ease-in-out;
	transform: scale(1.1);
}