@charset "UTF-8";
/* CSS Document */
/* Resets created by Eric Meyer */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, a, img, ol, ul, li, article, aside, 
figure, figcaption, footer, header, nav, section, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
}

/* Global styles */

body {
	background-image: url(../assets/sunsetCrop2.jpg);
	background-repeat: no-repeat;
	background-color: #e4e1ce;
	margin: 1.5em;
	padding: 0px;
	color: black;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
}
/* text styles */

p {
	font-size: 1em;
	font-weight: 400;
	line-height: 1.3em;
	margin-top: 1.1em;
}
.bold {
    font-weight: bold;
}
.italic {
    font-style: italic;
}
.tabletext {
    text-align: center;
}
.tabletextBorder {
    text-align: center;
    border-right: 1px solid black;
    padding-right: 0.5em;
}
.alignRight {
    text-align: right;
}
.links {
    text-decoration: none;
    color: black;
}
.articleHead {
	font-size: 1.5em;
	line-height: 1.2em;
	margin-bottom: 0.6em;
}
.articleHead2 {
	margin-top: 1.2em;
	font-size: 1.4em;
}
blockquote {
	font-size: 1.3em;
	margin-top: 1.1em;
}
h2 {
	font-size: 2.5em;
	font-weight: 600;
	margin-bottom: 0.5em;
}
h3 {
	font-size: 1.5em;
	font-weight: 600;
	margin-bottom: 0.5em;
}
h3.heads {
    margin-top: 0.5em;
}
h4 {
	font-size: 1.2em;
	font-weight: 300;
	margin-bottom: 0.5em;
}
.studentsHead {
	margin-top: 0.5em;
	font-weight: 600;
	font-size: 2em;
}

/* header text styles */
.bannerHead1, .bannerHead2, .bannerHead3 {
	text-align: center;
}
.bannerHead1 {
	font-size: 2em;
	font-weight: 800;
	line-height: 1.2em;
}
.bannerHead2 {
	font-size: 1.5em;
	font-weight: 700;
	margin-top: 0.4em;
}
.bannerHead3 {
	font-size: 1.2em;
	font-weight: 400;
	margin-top: 0.4em;
}
.headerLink {
	text-decoration: none;
	color: black;
}

/* banner styles */
.banner {
	margin-bottom: 2em;
	padding: 1em;
}

/* footer styles */
.bottom {
	text-align: center;
	margin-top: 2em;
}
/* form styles */
form {
	padding: 1em;
	margin-top: 1em;
	background-color: lavender;
}
label {
	color: grey;
	display: block;
	padding: 0.3em 0;
	margin-top: 0.3em;
}
select {
	color: grey;
	display: block;
	padding: 0.3em 0;
	margin-top: 0.3em;
}
input {
	background-color: floralwhite;
	width: 60%;
	margin: 0.5em 0;
}
.go {
	border-radius: 0.3em;
	font-size: 1.3em;
}
.go:hover {
	background-color: grey;
	color: white;
}

/* image styles */
img {
	margin: 1em;
	max-width: 100%;
	height: auto;
}
.mug {
	float: right;
	margin-top: 0;
    width: 13%;
}
.resume {
    width: 80%;
    margin-top: 0;
}
.flyer {
	margin: 0;
	max-width: 100%;
	height: auto;
}
.flyerSmall {
	margin: 0 0.5em 1em 0.5em;
	padding: 1em;
	text-align: right;
	width: 30%;
	float: right;
	border: 1px solid black;
	box-shadow: 2px 2px 2px grey;
}

/* video styles */

.video {
	margin: 1em;
	width: 100%;
	height: auto;
}

/* nav styles */

nav {
	background-color: rgba(199,22,111,.35);
	position: relative;
	padding: 10px 0em 0em 0em;
	width: 100%;
	margin: 1em 0;
}
nav ul {
	list-style: none;
	margin: 0em 1em;
	padding: 0;
}
nav li {
	position: relative;
}
nav ul li a {
	display:  inline-block;
	color: #fff;
	padding: 10px;
	text-decoration: none;
	width: 100%;
	position: relative;
}
nav ul li:hover {
	background-color: crimson;
}
nav ul li a:visited {
	color: #fff;
}
nav ul li a:hover {
	background-color: crimson;
	font-weight: bold;
}

/* flexbox styles */

.flex-container {
	display: flex;
	justify-content: center;
}

/* CSS grid styles */
.CSSgrid {
	display: grid;
	grid-template-columns: auto auto;
	grid-gap: 1em;
	justify-content: center;
}
.CSSgridTable {
	display: grid;
	grid-template-columns: auto auto auto;
	grid-gap: 1em;
	justify-content: center;
    background-color: peachpuff;
    border: 1px solid black;
    padding: 0.5em 0.5em 1em 0.5em;
    margin: 2em 0 1em 0;
}

/* media queries */

@media screen and (min-width: 600px) {

/*overall styles */
.site {
	display: grid;
	grid-template-columns: 13em auto;
	grid-template-rows: auto;
	grid-gap: 1em;
}
	
/*header styles*/
.banner {
	grid-row: 1;
	grid-column: 1/3;
}
	
/* header text styles */
.bannerHead1 {
	font-size: 3em;
	line-height: 1.2em;
}
.bannerHead2 {
	font-size: 2em;
}
.bannerHead3 {
	font-size: 1.5em;
}

/* nav styles */
nav {
	margin: 0;
}
.left {
	grid-column: 1/2;
}

/* section-right styles */
.articleHead {
	font-size: 1.8em;
	line-height: 1.2em;
}
.right {
	grid-column: 2/3;
	margin-top: 0;
}

/* footer styles */
.bottom {
	grid-column: 1/3;
}
}
