body {
	margin: 0;
	font-family: "Raleway";
}
a {
	text-decoration: none;
	color: inherit;
}

h1, h2 {
	margin: 0;
}

.responsive-container {
	display: flex;
	justify-content: space-between;
}


/*----- header ------*/
header {
	background-color: #dfe6e5;
	padding: 50px;

	display: flex;
	justify-content: space-between;
}
.header-right-container .item {
	margin-right: 35px;
}
.large-text {
	font-size: 1.4em;
}


/*----- skills contianer ------*/
.profile-container {
	width: 80%;
	margin: auto;
	margin-top: 120px;
	display: flex;
	justify-content: space-between;
}
.profile-container-p {
	width: 380px;
}
.profile-container-right-column .inner-container h2 {
	background-color: #dfe6e5;
	text-align: center;
	padding: 5px;
	/*min-width: 450px;*/
}
.profile-container-right-column {
	width: 40%;
}
/*.profile-container-right-column .inner-container {
	width: 80%;
}*/
.skill-image {
	width: 90px;
	margin: 50px;
}
.skill-row {
	display: flex;
	justify-content: center;
}

/*----- projects container -----*/
.projects-container {
	width: 80%;
	margin: auto;
	/*background-color: black;*/

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.project-header {
	text-align: center;
	color: white;
	padding-top: 30px;
	padding-bottom: 10px;
	font-size: 2.5em;
}
.project {
	width: 350px;
	/*height: 450px;*/
	/*background-color: #dfe6e5;*/
	margin: 20px;
}
.project-title {
	padding: 10px;
	font-size: 1.3em;
	background-color: white;
	margin-bottom: 15px;
}
.project-desc {
	margin-top: 15px;
	background-color: white;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
}
.project-thumb {
	width: 350px;
	height: 350px;
	/*border-top: 3px solid red;*/
	opacity: .8;
}
.project-thumb:hover {
	opacity: initial;
}


/*----- blog styles -----*/
.blog-padding-wrapper {
	padding: 50px;
}
.blog-header {
	text-align: center;
	font-size: 2.5em;
	margin: 20px;
}
.blog-container {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.blog {
	width: 15%;
	min-width: 260px;
	margin: 40px;
	background-color: #dfe6e5;
	border-radius: 15px;
	padding: 35px;
}
.blog-title {

}
.blog-thumbnail {
	width: 100%;
}
.blog-description {

}
.blog-link {
	display: block;
	text-align: center;
}
/*----- blog post styles -----*/
.blog-post-container {
	padding: 35px;
}



@media(max-width: 1150px) {
	/*---- profile contianer -----*/
	.profile-container {
		flex-direction: column;
	}
	.profile-container-right-column {
		width: initial;
	}
	.skill-image {
		margin: 25px;
	}	
}


@media(max-width: 650px) {
	.blog-padding-wrapper {
		padding: 0;
	}
	.blog-container {
		justify-content: column;
	}
	.blog {
		width: initial;
		min-width: initial;
		margin: 25px;
	}
}

@media(max-width: 580px) {
	#profile-image {
		width: 100%;
	}
	.profile-container-p {
		width: 100%;
	}
	.profile-container {
		margin-top: 60px;
	}
	/*---- projects -----*/
	.projects-container {
		width: 90%;
	}
	.project {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
	}
	.project-thumb {
		width: 100%;
		height: initial;
	}
}

@media(max-width: 530px) {
	header {
		flex-direction: column;
		/*justify-content: center;*/
		padding: 25px;
	}
	.header-left-container,
	.header-right-container {
		display: flex;
		flex-direction: column;
	}
	header .item {
		align-self: center;
		margin: 10px;
	}
	.header-right-container .item {
		margin: 10px;
	}


	/*---- profile contianer -----*/
	.profile-container {
		flex-direction: column;
	}
	.profile-container-right-column {
		width: initial;
	}	
}