/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* DO NOT TOUCH ABOVE CODE */

html {
	scroll-behavior: smooth;
}
img {
	height: auto;
	width: 100%;
}
h1 {
	color: black;
	text-align: center;
	padding: 20px;
	font-size: 2.5em;
	font-family: 'BIZ UDMincho', serif;
}
h2 {
	text-align: center;
	font-size: 1.9em;
	font-family: 'BIZ UDMincho', serif;
	padding-top: 28px;
	padding-bottom: 20px;
}
h3 {
	text-align: left;
	font-size: 1.0em;
	font-family: 'BIZ UDMincho', serif;
}
p {
	font-size: 17px;
	font-family: 'Nanum Gothic', sans-serif;
	text-align: left;
	margin: 20px;
}
.hover {
	opacity: 0;
}
header {
	font-family: 'Nanum Gothic', sans-serif;
}
ul, li {
	font-family: 'Nanum Gothic', sans-serif;
}
body {
	
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
}
li {
  float: left;
}
li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
#sig {
	font-family: 'Whisper', cursive;
	font-size: 3.9em;
	padding: 30px;
	text-align: center;
	grid-column-start: 1;
	grid-column-end: 4;
}
#headshot {
	border-radius: 50%;
	width: 50%;
	position: relative;
	left: 26%;
}
footer {
	text-align: center;
	padding: 10px;
}

/* Grid CSS */
.grid-container {
	height: auto;
	margin: 10px auto; 
	width: 90%;
	max-width:  900px;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 5px;
}
/* Page Section Divs */

#intro1, #intro2 {
	grid-column-start: 1;
	grid-column-end: 4;
}
#exp {
	grid-column-start: 1;
	grid-column-end: 4;
}
#job-desc {
	grid-column-end: 1;
	grid-column-start: 2;
}
#job-dates {
	grid-column-end: 2;
	grid-column-start: 4;
}
#portrait-desc {
	grid-column-start: 1;
	grid-column-end: 4;
}
#portraits1 {
	width: 60%;
}
#covers-desc {
	grid-column-start: 1;
	grid-column-end: 4;
}
#covers {
	width: 60%;
}
#events-desc {
	grid-column-start: 1;
	grid-column-end: 4;
}
#events1 {
	width: 60%;
}
#contact1, #contact2, #contact3, #contact4 {
	grid-column-start: 1;
	grid-column-end: 4;
}

/* Media Queries*/
/* Tablet */

@media only screen and (min-width: 601px) {
responsive-img {
	width: 100%;
	height: auto;
}
.grid-container {
	height: auto;
	margin: 10px auto; 
	width: 90%;
	max-width:  900px;
	grid-template-columns: 1fr 1fr;
	grid-gap: 5px;
}
#headshot {
	border-radius: 50%;
	width: 60%;
	position: relative;
	left: 74%;
	margin-top: 5%;
}
p {
	font-size: 1.2em;
	margin: 10px;
}
.hover {
	opacity: 1;
}
/* Page Sections by Scroll Order */
#intro1 {
	grid-column-start: 1;
	grid-column-end: 4;
}
#intro2 {
	grid-column-start: 1;
	grid-column-end: 4;
	margin-left: 15%;
	margin-right: 15%;
}
#exp {
	grid-column-start: 1;
	grid-column-end: 4;
}
#job-desc {
	grid-column-end: 1;
	grid-column-start: 2;
}
#job-dates {
	grid-column-end: 2;
	grid-column-start: 4;
}
#portrait-desc {
	grid-column-start: 2;
	grid-column-end: 4;
}
#portraits1 {
	width: 50%;
}
#covers {
	width: 50%;
}
#covers-desc {
	grid-column-start: 1;
	grid-column-end: 2;
}
#events-desc {
	grid-column-start: 1;
	grid-column-end: 2;
}
#events1 {
	width: 50%;
}

#contact1, #contact2, #contact3, #contact4 {
	grid-column-start: 1;
	grid-column-end: 4;
}
/* Hover Effect */
.container {
  position: relative;
  width: 100%;
}
.overlay {
  position: absolute;
  top: 30%;
  left: 100%;
  opacity: 0;
  transition: .5s ease; 
  width: 100%;
  background-color: #344009;
}
.container:hover .overlay {
  opacity: 1;
}
.text {
  font-size: 1em;
  text-align: justify;
  padding: 10px;
  width: 85%;
  color: white;
}
}

/* Desktop */

@media only screen and (min-width: 901px) {
responsive-img {
	width: 100%;
	height: auto;
}
.grid-container {
	height: auto;
	margin: 10px auto; 
	width: 100%;
	max-width:  1000px;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}
.grid-item {
}
p {
	font-size: 1.3em;
}
.hover {
	opacity: 1;
}
h2 {
	text-align: center;
	font-size: 2em;
	font-family: 'BIZ UDMincho', serif;
	padding-top: 28px;
}
h3 {
	font-size: 1.7em;
	font-family: 'BIZ UDMincho', serif;
	padding-top: 10px;
}
#sig {
	font-family: 'Whisper', cursive;
	font-size: 3.9em;
	padding: 10px;
	text-align: center;
	grid-column-start: 1;
	grid-column-end: 3;
}
#headshot {
	border-radius: 50%;
	width: 70%;
	position: relative;
	left: 65%;
	margin-top: 5%;
}
#intro1 {
	grid-column-start: 1;
	grid-column-end: 4;
}
#intro2 {
	grid-column-start: 1;
	grid-column-end: 4;
}
#job-desc {
	grid-column-end: 1;
	grid-column-start: 2;
}
#job-dates {
	grid-column-end: 2;
	grid-column-start: 4;
}
#exp1 {
	grid-column-start: 1;
	grid-column-end: 4;
}
#portrait-desc {
	grid-column-start: 1;
	grid-column-end: 4;
}
#portraits1 {
	width: 40%;
	margin-left: 15.5%;
}
#covers-desc {
	grid-column-start: 1;
	grid-column-end: 4;
}
#covers {
	width: 40%;
	margin-left: 15.5%;
}
#events-desc {
	grid-column-start: 1;
	grid-column-end: 4;
}
#events1 {
	width: 40%;
	margin-left: 15.5%;
}
#contact1, #contact2, #contact3, #contact4 {
	grid-column-start: 1;
	grid-column-end: 4;
}
/* Hover Effect */
.container {
  position: relative;
  width: 100%;
}
.overlay {
  position: absolute;
  top: 50%;
  left: 100%;
  opacity: 0;
  transition: .5s ease; 
  width: 70%;
  background-color: #344009;
}
.container:hover .overlay {
  opacity: 1;
}
.text {
  font-size: 1em;
  text-align: justify;
  padding: 10px;
  width: 85%;
  color: white;
}

}

/* Link Styles */
a:link {
	color: #B9BF04;
	background-color: transparent;
	text-decoration: none;
}
a:visited {
	color: #B9BF04;
	background-color: transparent;
	text-decoration: none;
}
a:hover {
	color: dimgrey;
	background-color: transparent;
	text-decoration: none;
}
a:active {
	color: #B9BF04;
	background-color: transparent;
	text-decoration: none;
}