/*
Theme Name: John Killian Basic Portfolio
Description: Intranet Theme - April 2018
Author: John Killian
Author URI: http://portfolio.ikographic.com/
Version: 1.0
*/

/*
Resetting and rebuilding styles have been helped along thanks to the fine
work of Eric Meyer, Nicolas Gallagher, Jonathan Neal, and Blueprint.
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	background: #f1f1f1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

fieldset {
	min-width: inherit;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	quotes: none;
}

a:focus {
	outline: 2px solid #c1c1c1;
	outline: 2px solid rgba(51, 51, 51, 0.3);
	outline: none;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}

/* -- END RESET -- */

html{
	font-family: "Open Sans", sans-serif
}
#navbar{
	background-color: black;
	overflow: auto;
	position: fixed;
	width: 100%;
	top: 0;
	border-bottom: 3px solid red;
}
#nav_menu{
	position: relative;
	top: 0;
	max-width: 800px;
	margin: 0 auto;
	overflow: auto;
}
#nav_menu li{
	float: left;
	text-align: center;
	color: white;
	width: 25%;
}
#nav_menu li a{
	padding: 20px;
	display: block;
	text-decoration: none;
	color: white;
	
}
#nav_menu li a:hover{
	color: red;
}
#main{
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px 200px 20px;
	/*background-color: #d6e0e4;*/
	color: rgb(0,0,0);
}
#main img{
	width: 100%;
	height: auto;
	margin-bottom: 2rem;
}
.intro{
	padding-top: 100px;
	padding-bottom: 6rem;
	border-bottom: 4pt solid rgb(150,150,150);
	margin-bottom: 100px;
}
.category{
	padding-top: 100px;
	overflow: auto;
}
#main h1{
	font-size: 2rem;
	font-weight: 300;
	margin-bottom: 10px;
	color: red;
	text-transform: uppercase;
}
#main h1 a{
	text-decoration: none;
	color: red;
}
#main p{
	/*margin-top: 0.5rem;*/
	margin-bottom: 1rem;
}
.project{
	width: 100%;
	margin-bottom: 40px;
	border-bottom: 1px solid rgb(150,150,150);
	/*padding-bottom: 40px;*/
	/*height: 400px;*/
}
#main h2{
	font-size: 1rem;
	font-weight: bold;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
#main h3{
	font-weight: bold;
	font-size: 0.7rem;
	text-transform: uppercase;
	color: red;
}
#main h4{
	font-size: 1.3rem;
	line-height: 1.9rem;
	margin-top: 3rem;
	/*margin-bottom: 6rem;*/
}
.proj_thumbnail{
	overflow: hidden;
}
.proj_thumbnail img{
	width: 100%;
	height: auto;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
.proj_description{
	/*height: 200px;*/
}
.proj_description h3{
	font-weight: bold;
	font-size: 0.7rem;
	text-transform: uppercase;
	color: red;
}
.proj_description p{
	font-size: 0.9rem;
	line-height: 1.1rem;
	margin-bottom: 0.5rem;
	color: rgb(80,80,80);
}
#footer{
	background-color: rgb(200,200,200);
	position: fixed;
	bottom: 0;
	width: 100%;
}
#contact{
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}
#contact h3{
	text-transform: uppercase;
	color: red;
	font-weight: bold;
}
#contact a{
	text-decoration: none;
	color: red;
}
#contact a:hover{
	text-decoration: underline;
	cursor: pointer;
}

@media(min-width: 800px){

}