*,
*::before,
*::after{
	box-sizing: border-box;
}

*:focus{
	outline: none;
}
 
body{
	padding: 0;
	margin: 0;
	background: #fff;
	color: #000;
	font-family: "Oxygen", "sans-serif";
}
a{
	text-decoration: none;
}
img{
	width: 100%;
}

.home img{
	width: 100%;	
/*	-webkit-filter:grayscale(100%) constrant(100%);
	filter: grayscale(100%) constrant(200%)	brightness(60%);*/
}

.project img{
	/*filter: grayscale(100%);*/
}

aside{
	position: fixed;
	background: #4acaa8;
	top: 0px;
	left: 0px;
	width: 180px;
	height: 100%;
	overflow: none;
	z-index: 1;
	text-align: center;
	padding: 0;
}

aside img{
	/*filter: grayscale(100%) constrant(200%)	brightness(60%);*/
	margin-bottom: -3px;
	padding: 15px;
	border-radius: 50%;
}

.material-icons.md-36{
	font-size: 36px;
}

aside a{
	display: block;
	padding: 10px 0;
	color: white;
	transition: all 0,35s;
	text-transform: uppercase;
	font-size: 0.75em;
	letter-spacing: 2px;
}

aside p{
	margin: 0px;
	padding: 0px;
}

aside a:hover{
	background: #fff;
	color: #4acaa8;
}
	
aside nav a:nth-child(2){
	background: #fff;
	color: #4acaa8;;
}

aside nav a:nth-child(2):hover{
	background: #fff;
	color: #4acaa8;
}

main{
	max-width: 980px;
	background: #fff;
	margin-left: 20%;
	padding: 12px 50px 12px 50px;
}
	
header{
	text-align: center;
	letter-spacing: 2px;
}

header h1{
	font-weight: bold;
	font-size: 4em;
}

header h5{
	font-weight: bold;
	font-size: 1em;
	letter-spacing: 4px;
	color: #1e2524;
}

.about{
	line-height: 1.5em;
	letter-spacing: 1px;
	font-weight: 300;
}
.project{
	line-height: 1.5em;
	letter-spacing: 1px;
	font-weight: 300;
}
.contact{
	line-height: 1.5em;
	letter-spacing: 1px;
	font-weight: 300;
}

.about h2{
	font-weight: bold;
	text-transform: uppercase;
	margin: 100px 0 50px 0;
	letter-spacing: 4px;
}
.project h2{
	font-weight: bold;
	text-transform: uppercase;
	margin: 100px 0 50px 0;
	letter-spacing: 4px;
}

.about p{
	color: #1e2524;
}

.about span{
	font-weight: bold;
	color: white;
}

.about h3{
	font-weight: bold;
	margin: 25px 0;
}

.container{
	width: 100%;
	background-color: #b2b2b2;
	border: 1px solid #222;
}

.skills{
	text-align: right;
	padding-right: 20px;
	line-height: 30px;
	color: black;
	background-color: #424242;
}
.java{
	color: white;
	width: 70%;
}
.android{
	width: 85%;
	color: white;
}
.github{
	width: 90%;
	color: white;
}
.oop{
	width: 85%;
	color: white;
}
.database{
	width: 60%;
	color: white;
}

.project h3{
	color: #1e2524;
	font-weight: 300;
	letter-spacing: 2px;
	font-size: 1.5em;
}

.project p{
	font-size: 0.875em;
}

.row-halves{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	margin: 20px 0;
	-webkit-flex-pack:justify;
}

.row-halves col{
	width: 49%;
}

.col{
	border: 1px solid #222;
	background: #fff;
	color: #1e2524;
	padding: 10px;
}

.footer{
	border-top: 1px solid #222;
}

.top-bar{
	padding: 20px 0;
	text-align: center;
}

.top-bar h2{
	font-weight: bold;
	text-transform: uppercase;
	margin: 50px 0;
	letter-spacing: 4px;
}

.top-bar a{
	margin: 10px;
	font-size: 2em;
	color: #b2b2b2;
	transition: all 0.35s;
	display: inline-block;
}

.top-bar a:hover{
	transform: scale(1.1);
	color: #009688;
}
.top-bar img{
	max-width:100%;
	height:auto;
}

.bottom-bar{
	background: #fff;
	font-size: 0.75em;
	text-align: center;
}

@media (max-width: 768px){
	.row-halves{
		display: block;
	}

	.row-halves .col{
		width: 100%;
		margin: 0 0 10px 0;
	}
	
}

@media (max-width: 601px){
	aside{
		display: none;
	}

	main{
		width: 100%;
		margin: 0 auto;
		padding: 12px 25px;
	}

	header{
		margin: 80px;
	}

	header h1{
		font-size: 3em;
		line-height: 1.4em;
	}

	header h5{
		font-size: 3em;
		letter-spacing: 2px;
	}

	.mobile-nav{
		position: fixed;
		width: 100%;
		display: flex;
		justify-content: space-around;
		background: rgba(0,0,0,0.8);
		z-index: 1;
	}

	.mobile-nav a{
		width: 100%;
		color: #b2b2b2;
		text-transform: uppercase; 
		font-size: 0.875em;
		letter-spacing: 2px;
		text-align: center;
		padding: 10px 10px;
		transition: all 0.35s;
	}

}

@media (min-width: 601px){
	.mobile-nav{
		display: none;
	}
}
