#gridBox {
	display: grid;
	width: 90%;
	margin: auto;
	margin-top: 3em;

	justify-items: center;
	column-gap: 2em;
	grid-template-columns: 30% 1fr;
	grid-template-areas:
		"published demo"
		"personal demo";
}

#published {
	grid-area: published;
}

#personal {
	grid-area: personal;
}

.sectionTitle {
	padding: 2rem;
	font-size: 2em;
	margin: 0px;
	padding-bottom: 0.25em;
}

#published ul, #personal ul {
	list-style: none;
}

#published li, #personal li {
	position: relative;
	left: 0em;
	margin: 1em;
}

#published li:hover, #personal li:hover {
	left: 1em;
	border-radius: 15px;
	box-shadow: 0px 0px 5px #b58341;
	background-blend-mode: normal;
}

.projectButton {
	background-color: #3b3227;
	padding: 1em;
	text-align: center;
	border-radius: 15px;
	background-repeat: no-repeat;
	background-size: cover;
	background-blend-mode: multiply;
	min-width: 280px;
}

.projectButton:hover {
	color: rgba(0, 0, 0, 0);	
	background-blend-mode: normal;
}

#more {
	position: sticky;
	top: 10vh;
	height: 75vh;
	width: 50vw;
	grid-area: demo;
	border: 4px solid #3b3227;
	overflow: auto;
	padding: 1em;
}

#projectTitle > h3 {
	text-align: center;
	font-size: 3em;
	margin-bottom: 0;
	margin-top: 0.25em;
}

#questions h4 {
	font-size: 1.5em;
	font-weight: normal;
	font-style: italic;
	margin-bottom: 0.25em;
	margin-top: 0.75em;
}

#questions a {
	color: #debf85;
}

#questions p {
	margin: 0;
}

#studentExamples li {
	margin-top: 0.5em;
}

/* SCREENSHOTS */
#projectScreenshots {
	display: flex;
	max-height: 10em;
	flex-wrap: wrap;
	gap: 1em;
}

#projectScreenshots img {
	max-height: 10em;
	width: auto;
}

/* INDIVIDUAL BUTTONS */

#wintermoorTacticsClub {
	background-image: url("graphics/ip/wintermoor_cover.jpg");
	background-position: 0% 70%;
}

#waldenAGame {
	background-image: url("graphics/ip/walden_banner.jpg");
	background-position: 0% 75%;
}

#feedbackForce {
	background-image: url("graphics/ip/feedbackforce.jpg");
	background-position: 0% 40%;
}

#superfugu {
	background-image: url("graphics/ip/superfugu.png");
	background-position: 0% 55%;
}

#theBlu {
	background-image: url("graphics/ip/theblu.png");
	background-position: 0% 25%;
}

#safariRescue {
	background-image: url("graphics/ip/safarirescue_banner.png");
	background-position: 0% 55%;
}

#gdcThemes {
	background-image: url("graphics/ip/gdc.png");
	background-position: 0% 0%;
}

#theMotherOfTheMountain {
	background-image: url("graphics/ip/mountains.jpg");
	background-position: 0% 15%;
}

#tinkertock {
	background-image: url("graphics/ip/tinkertock_cover.png");
	background-position: 0% 10%;
}

#theSingerOfIce {
	background-image: url("graphics/ip/icemountain.jpg");
	background-position: 0% 60%;
}

#intimation {
	background-image: url("graphics/ip/intimation2.png");
	background-position: 0% 85%;
}

#studentProjects {
	background-image: url("graphics/ip/student_banner.png");
	background-position: 0% 50%;
}

#playingAStory {
	background-image: url("graphics/ip/playingastory.jpg");
	background-position: 0% 30%;
}


@media (max-width: 800px) {
	#gridBox {
		width: 90%;
		row-gap: 2em;
		grid-template-columns: 1fr;
		grid-template-areas:
			"demo"
			"published"
			"personal";
	}

	#more {
		position: relative;
		top: 0;	
		width: 100%;
	}

	.sectionTitle {
		text-align: center;
	}

	#published ul, #personal ul {
		padding-left: 0;
	}
}