/*Projects*/
/*Start Fonts*/
.vt323-regular {
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
}


.sixtyfour {
  font-family: "Sixtyfour", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 0,
    "SCAN" 0;
}

/*End Fonts*/

.slicknav_menu {
	display: none;
	grid-area: nav_menu;
}

body {
	background-color: black;
	width: 98%;
	max-width: 960px;
    margin: 0 auto;
    background-color: black;
}

.grid_container {
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto;
	grid-template-areas: 
	"head"
	"nav_menu"
	"main"
	"foot"
	;
	grid-gap: 5px;
}

header {
	font-family: "VT323", monospace;
	font-size: 220%;
	color: #00FF66;
	text-align: center;
	margin-top: 5px;
	max-width: 98%;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: 100%;
	/* grid-area: head; */
}
.header-title {
	grid-row: 1/1;
	grid-column: 3 / span 8;
}
header img {
	float: left;
	margin: 3px;
	border: 3px solid black;
}
header img:hover, img:focus {
	border: 3px solid #00FF66;
}
header h1 {
	margin-top: 10px;
	margin-bottom: 0;
	
}

main {
	font-family: "VT323", monospace;
	margin: 0;
	padding: 0;	
	max-width: 960px;
	display: grid;
	grid-area: main;
	color: #00FF66;
	grid-template-columns: 1fr;
	grid-template-rows: auto auto auto;
} 

/* MAIN Row 1 */
.vb-p-container {
	grid-row: 1;
}

.visual-basic-projects {
	display: grid;
	max-width: 960px;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
	text-align: center;
}
.p-head {
	grid-column: 1 / span 12;
	grid-row: 1;
	font-size: 200%;
	text-align: center;
	margin-top: 2%;
	margin-bottom: 0.4%;
	border: 1px solid #00FF66;
	margin-bottom: 2%;
}
.vb-p1-ui  {
	grid-column: 2 / span 4;
	grid-row: 2;
	
}
img.vb-p1-ui {
	max-width: 92%;
}

.vb-p1-code {
	grid-column: 6 / span 5;
	grid-row: 2;
 }
 
 img.vb-p1-code {
	 max-width: 136%;
 }
 
.vb-p1-links {
	grid-column: 1 / span 12;
	grid-row: 3;
	margin-top: 2%;
	margin-bottom: 3%;
	border-bottom: 2px solid #00FF66;
}

/* vb p2*/
.vb-p2-ui {
	grid-column: 1 / span 3;
	grid-row: 5;
}
.vb-p2-code {
	grid-column: 4 / span 9;
	grid-row: 5;
}

img.vb-p2-ui {
	max-width: 100%;
}
img.vb-p2-code {
	max-width: 100%;
}
.vb-p2-links {
	grid-column: 1 / span 12;
	grid-row: 6;
	margin-top: 2%;
	margin-bottom: 3%;
	border-bottom: 2px solid #00FF66;
}

/*VB p3*/
.vb-p3-ui {
	grid-column: 4 / span 6;
	grid-row: 8;
}
.vb-p3-code {
	grid-column: 3 / span 8;
	grid-row: 9;
}

img.vb-p3-ui {
	max-width: 100%;
}
img.vb-p3-code {
	max-width: 100%;
}
.vb-p3-links {
	grid-column: 1 / span 12;
	grid-row: 10;
	margin-top: 2%;
	margin-bottom: 3%;
}
/* HTML AND CSS PROJECTS*/
.hc-p-container {
	grid-row: 2;
}

.hc-projects {
	display: grid;
	max-width: 960px;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
	text-align: center;
}

.hc-p1-ui {
	grid-column: 1 / span 12;
	grid-row: 2;
}
.hc-p1-code {
	grid-column: 3 / span 8;
	grid-row: 3;
}

img.hc-p1-ui {
	max-width: 100%;
	margin: auto;
}
img.hc-p1-code {
	max-width: 100%;
	margin: auto;
}
.hc-p1-links {
	grid-column: 1 / span 12;
	grid-row: 4;
	margin-top: 2%;
	margin-bottom: 3%;
	border-bottom: 2px solid #00FF66;
}
/* HC P2 */
.hc-p2-ui {
	grid-column: 1 / span 12;
	grid-row: 5;
}
.hc-p2-code {
	grid-column: 3 / span 8;
	grid-row: 6;
}

img.hc-p2-ui {
	max-width: 100%;
	margin: auto;
}
img.hc-p2-code {
	max-width: 100%;
	margin: auto;
}
.hc-p2-links {
	grid-column: 1 / span 12;
	grid-row: 7;
	margin-top: 2%;
	margin-bottom: 3%;
	border-bottom: 2px solid #00FF66;
}

/* HC P3 */
.hc-p3-ui {
	grid-column: 1 / span 12;
	grid-row: 8;
}
.hc-p3-code {
	grid-column: 3 / span 8;
	grid-row: 9;
}

img.hc-p3-ui {
	max-width: 100%;
	margin: auto;
}
img.hc-p3-code {
	max-width: 100%;
	margin: auto;
}
.hc-p3-links {
	grid-column: 1 / span 12;
	grid-row: 10;
	margin-top: 2%;
}

/*JAVASCRIPT PROJECTS*/
.js-p-container {
	grid-row: 3;
}
.js-projects {
	display: grid;
	max-width: 960px;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
	text-align: center;
}

/* JS P1*/

.js-p1-ui {
	grid-column: 1 / span 12;
	grid-row: 2;
}
.js-p1-code {
	grid-column: 1 / span 12;
	grid-row: 3;
}

img.js-p1-ui {
	max-width: 100%;
	margin: auto;
}
img.js-p1-code {
	max-width: 100%;
	margin: auto;
}
.js-p1-links {
	grid-column: 1 / span 12;
	grid-row: 4;
	margin-top: 2%;
	margin-bottom: 3%;
	border-bottom: 2px solid #00FF66;
}
/* JS p2 */

.js-p2-ui {
	grid-column: 1 / span 12;
	grid-row: 5;
}
.js-p2-code {
	grid-column: 1 / span 12;
	grid-row: 6;
}

img.js-p2-ui {
	max-width: 100%;
	margin: auto;
}
img.js-p2-code {
	max-width: 100%;
	margin: auto;
}
.js-p2-links {
	grid-column: 1 / span 12;
	grid-row: 7;
	margin-top: 2%;
	margin-bottom: 3%;
	border-bottom: 2px solid #00FF66;
}

/* JS P3 */
.js-p3-ui {
	grid-column: 1 / span 12;
	grid-row: 8;
}
.js-p3-code {
	grid-column: 1 / span 12;
	grid-row: 9;
}

img.js-p3-ui {
	max-width: 100%;
	margin: auto;
}
img.js-p1-code {
	max-width: 100%;
	margin: auto;
}
.js-p3-links {
	grid-column: 1 / span 12;
	grid-row: 10;
	margin-top: 2%;
	margin-bottom: 3%;

}

/* Project Link Style */

.p-link {
	font-family: "Sixtyfour", sans-serif;
	font-size: 100%;
	color: #00FF66;
	padding: .2%;
	text-decoration: none;
}
.p-link:hover, .p-link:focus {
	background-color: #00FF66;
	color: black;
	
}

.p-link:visited {
	color: #fff333;
}
.link-list {
	list-style-type: none;
}
#nav_menu {
	color: #00FF66;
	width: 45%;
	font-size: 100%;
	font-family: "Sixtyfour", sans-serif;
	max-width: 960px;
	width: 100%;
	grid-area: nav_menu;
}

#nav_menu ul {
	border-bottom: 1px solid #00FF66;
	padding: 3px 6px 3px 6px;
	text-align: center;
	margin: 0;
}

#nav_menu ul li {
	list-style-type: none;
	margin-top: 5px;	
	display: inline;
}

#nav_menu ul li a {
	color: #00FF66;
	padding: 3px;
	text-decoration: none;
}

#nav_menu ul li.active{
	color: #fff333;
	background: #000;
	border-right: 1px solid #00FF66;
	border-left: 1px solid #00FF66;
	border-bottom: 2px solid black;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	padding: 3px 6px 3px 6px;
}

#nav_menu ul li a:hover, a:focus {
	color: black;
	background-color: #00FF66;
}

#nav_menu ul li a:visited {
	
}

#nav_menu ul li a:hover, a:focus, a:visited {
	color: black;
}

#nav_menu ul li.active, a.disabled {
	pointer-events: none !important;
	cursor: default !important;
	color: #fff333 !important;
}
/* FOOTER */
footer {
	grid-area: foot;
	color: #00FF66;
	font-family: "VT323", monospace;
	border-top: 1px #00FF66 solid;
	max-width: 85%;
	margin: 0 auto;
	font-size: 125%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto auto; 
	grid-gap: 10px;
}

.footer-grid-col-1, .footer-grid-col-2 {
	grid-row: 1/2;
	margin-top: 10px;
}
/* Start FOOT COL 1 */
.footer-grid-col-1 {
	grid-row: 1 / 2;
	grid-column: 1 / 2;
	text-align: center;
}

.footer-grid-col-1 h3{
	margin: 0;
}
/*Footer links*/
.footer-grid-col-1 a {
	font-family: "Sixtyfour", sans-serif;
	color: #00FF66;
	font-size: 47%;
	padding: 1%;
	text-decoration: none;
	display: block;
}
.footer-grid-col-1 a:hover, a:focus {
	color: black;
	background: #00FF66;
}
/* end FOOT COL 1 */

/* Start FOOT COL 2 */
.footer-grid-col-2 h3{
	margin: 0;
}

.footer-grid-col-2 {
	grid-column: 2 / 3;
	text-align: center;
}

.linkedin {
	margin-bottom: 3px;
}

.linkedin img {
	margin: 3px;
	border: 3px solid black;
}

.footer-grid-col-2 .linkedin img:hover, img:focus {
	border: 3px solid #00FF66;
}

.linkedin a:hover, a:focus {
	background-color: transparent;
}

.github {
	margin-bottom: 3px;
}

.github img {
	margin: 3px;
	border: 3px solid black;
}

.footer-grid-col-2 .github img:hover, img:focus {
	border: 3px solid #00FF66;
}

.github a:hover, a:focus {
	background-color: transparent;
}

.steam-miniprofile-show {
	max-width: 328px;
	margin: auto;
}

/* end FOOT COL 2 */


.footer-row-2 {
	grid-row: 2;
	grid-column: 1 / 3;
	
}



@media screen and (max-width: 840px) {
	/* Start NAV Edits*/
	/* Show slicknav menu and hide nav menu */
	.slicknav_menu {
		display: block;

	}
	#nav_menu {
		display: none;
	}
	/* Set the font for the slicknav menu and set the slicknav bar color */
	.slicknav_menu {
		font-family: "Sixtyfour", sans-serif !important;
		background-color: black !important;
	}
	/* When collapsed: Menutxt is green and button color is black with a green border */
	
	.slicknav_menutxt {
		color: #00FF66 !important;
	}
	
	.slicknav_btn.slicknav_collapsed {
		background-color: black !important;
		border: 1px #00FF66 solid !important;
	}
	/* Btn hover and focus */
	
	
	
	/* When collapsed: The hamburger lines are green */
	
	.slicknav_menu .slicknav_icon-bar {
		background-color: #00FF66 !important;
	}
	
	/* When open: The btn color is green and the txt color is black */
	/* The btn hambuger lines are black */
	.slicknav_btn.slicknav_open {
		background-color: #00FF66 !important;
	}
	
	.slicknav_btn.slicknav_open .slicknav_menutxt {
		color: black !important;
	}

	.slicknav_btn.slicknav_open .slicknav_icon-bar {
		background-color: black !important;
	}

	/* Links text is green with a black background, on hover the links text is black with a green background */
	/* Visited links will be yellow */
	.slicknav_nav a {
		color: #00FF66 !important;
	}
	
	.slicknav_nav a.active {
		color: #fff333 !important;
	}
	
	.slicknav_nav a:hover, a:focus {
		color: black !important;
		background-color: #00FF66 !important;
	}
	
	.slicknav_nav a:hover, a:focus, a:visited {
		color: black;
	}

	.slicknav_nav a.disabled {
		pointer-events: none !important;
		cursor: default !important;
		color: #fff333 !important;
		border-left: 2px #00FF66 solid !important;
		/* border: 1px #00FF66 solid !important; */
		/* text-align: center; */
	}
	/* End NAV*/
	
	
	/* HEADER */
	/* END HEADER */
	
	
	/* MAIN */
	/*Vb.net p1*/
	.vb-p1-ui {
		grid-column: 1 / span 12;
		grid-row: 2;
	}
	img.vb-p1-ui {
		width: 67%;
		margin: auto;
	}
	.vb-p1-code {
		grid-column: 1 / span 12;
		grid-row: 3;
	}
	img.vb-p1-code {
		width: 100%;
		margin: auto;
	}
	.vb-p1-links {
		grid-column: 1 / span 12;
		grid-row: 4;
	}
	/* vb.net p2*/
	.vb-p2-ui {
		grid-column: 1 / span 12;
		grid-row: 5;
	}
	img.vb-p2-ui {
		width: 67%;
		margin: auto;
	}
	.vb-p2-code {
		grid-column: 1 / span 12;
		grid-row: 6;
	}
	img.vb-p2-code {
		width: 100%;
		margin: auto;
	}
	.vb-p2-links {
		grid-column: 1 / span 12;
		grid-row: 7;
	}
	/*p3 vb.net*/
	
	.vb-p3-ui {
		grid-column: 1 / span 12;
		grid-row: 8;
	}
	img.vb-p3-ui {
		width: 67%;
		margin: auto;
	}
	.vb-p3-code {
		grid-column: 1 / span 12;
		grid-row: 9;
	}
	img.vb-p3-code {
		width: 100%;
		margin: auto;
	}
	.vb-p3-links {
		grid-column: 1 / span 12;
		grid-row: 10;
	}
	
	/* END MAIN */
	
	
	/* FOOTER */
	/* END FOOTER */
}

/* FOOTER SIZING */
@media screen and (max-width: 604px) {
	.footer-grid-col-2 {
		grid-row: 1;
		grid-column: 1 / span 2;
		margin: auto;
	}
	.footer-grid-col-1 {
		grid-row: 2;
		grid-column: 1 / span 2;
		margin: auto;
		width: 75%;
		border-top: 1px solid #00FF66;
		margin-bottom: 5%;
	}
}

@media screen and (max-width: 468px) {
	/* HEADER */
	header {
		font-size: 200%;
	}
	/* END HEADER */
	
	
	/* MAIN */
	/* END MAIN */
	
	
	/* FOOTER */
	/* END FOOTER */
}
@media screen and (max-width: 436px) {
	/* HEADER */
	header {
		font-size: 190%;
	}
	/* END HEADER */
	
	
	/* MAIN */
	/* END MAIN */
	
	
	/* FOOTER */
	/* END FOOTER */
}

* {
 
	box-sizing: content-box !important;

}