/* Mobile layout */
html {
	font-size:16px;
	margin:0px;
	padding:0px;
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-weight:normal;
	min-height: 100%;
	color:#cccccc;
}

body {
	background: #031014;
	margin:0px;
	padding:0px;
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-weight:normal;
	color:#cccccc;
}

#pageContainerDiv {
	position:relative;
	width: 100%
}

a {
	color: #cccccc;
	text-decoration: none;
}

a:visited {
	color: #cccccc;
}

a:hover {
	color:#ffff4c;
}

button{
	background:none;
}

h1 {
	padding-top: 0px;
	margin-top: 10px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	text-align:left;
	font-weight:normal;
	color:#cccccc;
	font-size:26px;
}

h2 {
	text-align: center;
	color:#cccccc;
	font-size:24px;
}

h3 {
	text-align:center;
	color:#cccccc;
	font-size:16px;
}

#headerDiv {
	position:fixed;
	display:grid;
	grid-template-columns: 80% 20%;
	top: 0px;
	width: 100%;
	height: 5vh;
	justify-content:center;
	background-color: #031014;
	z-index:4;
}

#menuDiv {
	display:inine-grid;
	grid-auto-flow: column;
	justify-content: center;
	background-color: #031014;
	color:#cccccc;
	font-size: 1em;
	z-index:5;
	/*padding-left: 10%;*/
}

#menuList {
	text-decoration: none;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.menuListItem {
	cursor:pointer;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
}

#nameDiv {
	background-color: #031014;
}

#nameDiv h1 {
	text-align:center;
}

#biogTopPaddingDiv{
	position:relative;
	width:100%;
	height:8vh;
}

#biogDiv {
	position: relative;
	margin-left: 10px;
	width: 60%;
}

#heroImageDiv {
	width: 100%;
}

#heroImageDiv img {
	width:100%;
	height:auto;
}

#portfolioDiv {
	position:relative;
	margin-top: 0px;
}

.subSectionClass {
	position:relative;
	width: 90%;
	padding-left: 5%;
	padding-bottom: 5%;
}

.sectionImagesClass {
	width:100%;	
	display:grid;
	grid-template-columns: auto auto;
	/*align-items:center;*/
	justify-content: center;
	/*grid-auto-flow:row;*/
	gap: 10px;
}

.portfolioThumbnailClass {
	/*width: 40vw;
	height: 40vw;*/
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 100%;
}

#SHB01 {
	background-image: url('../images/SHB_poster.png');
	background-size: 100% auto;
}

#SHB02 {
	background-image: url('../images/ShootHouse01.png');
}

#SHB03 {
	background-image: url('../images/Warehouse.png');
}

#SHB04 {
	background-image: url('../images/weapon_UVs.png');
}

#KS01 {
	background-image: url('../images/killswitch_splash_screen.png');
}

#KS02 {
	background-image: url('../images/KillSwitchLevel01.png');
}

#KS03 {
	background-image: url('../images/KillSwitchLevel02.png');
}

#KS04 {
	background-image: url('../images/KillSwitchLevel03.png');
}

#US01 {
	background-image: url('../images/UnderSiegePoster.png');
	background-size: 100% auto;
}

#US02 {
	background-image: url('../images/WallModuleOutlines.png');
	background-size: 100% auto;
}

#US03 {
	background-image: url('../images/WallModuleCOL.png');
	background-size: 100% auto;
}

#US04 {
	background-image: url('../images/CCAM_Building.png');
	background-size: auto 100%;
}

#imageOverlayDiv {
	display: none;
	position:fixed;
	top: 0px;
	left:0px;
	width: 100%;
	height: 100%;
	background-color: rgba(128, 128, 128, 0.75);
	z-index:101;
}

#overLayGridDiv {
	position:relative;
	display: grid;
	width: 100%;
	height: 100%;;
	align-items: center;
	justify-items: center;
}

#overlayImage{
	width:90vw;
	height: auto;
}

#overlayCloseBtn {
	position:absolute;
	width:30px;
	height: 30px;
	top: 30px;
	right: 30px;
	background-color: #cccccc;
	color: #888888;
	z-index: 102;
}

/*end mobile layout*/

@media screen and (min-width: 520px) {
	
	#pageContainerDiv {
		width:500px;
		margin-left:auto;
		margin-right:auto;
	}

	#headerDiv {
		width: 519px;
	}
}

/*end 520px layout*/

@media screen and (min-width: 801px) {
	#pageContainerDiv {
		width:800px;
		margin-left:auto;
		margin-right:auto;
	}
	#headerDiv {
		width: 800px;
	}
}

/*end 801px layout*/

@media screen and (min-width: 961px) {
	#pageContainerDiv {
		width:960px;
		margin-left:auto;
		margin-right:auto;
	}
	
	#headerDiv {
		width: 960px;
	}

	.subSectionClass {
		width: 100%;
		padding-left: 0%;
		padding-bottom: 0%;
	}

	.sectionImagesClass {
		grid-template-columns: auto auto auto auto;
		gap: 10px;
	}
}