@media only screen and (max-width: 37.5em) {

/* This main css file contains the default rules and is geared toward the small/phone view */

* { box-sizing: border-box;}  /* This wildcard applies to all elements ensuring a box layout model */

body {
	font-size: 16px;
	font-family: "Arsenal";
	/* Declare the base font-family - from google font api or other */
}

header, nav, main, footer { /* the comma means apply the following CSS declarations to all of the listed elements */
	/* Declare the maximum width and other main element rules to limit the stretch on wide views */
}

/* -----------------This is code to run the hamburger menu---------------------------*/

.hamburger {
	display: block;
	position: absolute;
	top: 2.0rem;
	right: 1.25rem;
}

.navigation {
	list-style: none;
	padding-left: 0;
}

.navigation li {
	display: none;
}

/*------------------------Begin Header---------------------*/

header {
	background-color: #1e2023;
}

header img {
	width: 95%;
	display: block;
	margin: auto;
}

/*-----------------BEGIN NAV--------------------------*/

/* When the responsive class is added to the unordered list on hamburger button click
placed in a media query in order to accomodate the toggle when in wider view*/
@media only screen and (max-width: 37.5em) {
	.navigation.responsive {
		position: relative;
	}

	.navigation.responsive li {
		background-color: #eee;
		display: block;
		width: 100%;
		margin: 2px 0;
		border: 1px solid #ddd;
	}

	.navigation.responsive li a {
		padding: 1rem;
		text-align: center;
		display: block;
		text-decoration:none;
	}

	.navigation.responsive li a:hover {
		background-color: #ddd;
	}
}

nav {
	background-color: #1e2023;
}

/*nav button {
display: none;  /*Not needed at this time
}

nav ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 150px;
background-color: #f1f1f1;
border: 1px solid #555;
}

nav ul li {
text-align: center;
border-bottom: 1px solid #555;
font-size:.7em;

}

nav ul li a {
display: block;
color: #000;
padding: 8px 16px;
text-decoration: none;
}

nav ul li.active a {
background-color: #4CAF50;
}
li a:hover {
background-color: #555;
color: white;
}*/

/*---------------BEGIN PAGE------------*/


	/*.pageTitleContainer {
		width: 100%;
	}

	.pageTitle {
	font-size: 2rem;
	font-weight: bold;
	margin: auto;
	}*/

	.picWrapper {
	display: grid;
	grid-template-columns: 150px 1fr;
	grid-row-gap: 40px;

}

.pic {
	height: 200px;
	width: 200px;
	grid-column: 1;
	}
}
