* {
	box-sizing: border-box;
}
body {
	font-size: 16px;
	line-height: 1.5;
	font-family: 'Titillium Web', sans-serif;
	color: #000;
}
header {
	background: #38a5db;
	text-align: center;
	padding: 2rem;
}

header h1 {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: bold;
	color: #fff;
	font-size: 2.5rem;
	line-height: 2.5rem;
}

header small {
	font-size: 1.5rem;
	line-height: 1.5rem;
	font-weight: normal;
}

section {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

section.about {
	max-width: 800px;
	/*border-bottom: 1px solid #eaeaea;*/
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	text-align: center;
}

.portfolio {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

.portfolio .item {
	display: inline-block;
	width: 100%;
	padding: 1rem;
}

.portfolio .item:hover {
	background: #38a5db;
	transition: .2s background ease-in-out;
}

.portfolio .name {
	text-align: center;
	display: block;
	font-weight: bold;
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	text-decoration: none;
	color: #000;
	transition: .2s color ease-in-out;
}

.portfolio .item:hover .name {
	color: #fff;
}

.portfolio img {
	max-width: 100%;
}

.about article {
	width: 100%;
	padding: 0 1rem;
}

.tags span {
	background: #38a5db;;
	color: white;
	display: inline-block;
	white-space: nowrap;
	padding: 0.25rem 0.5rem;
	margin: 0.25rem;
}

section.contact {
	text-align: center;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	margin-bottom: 5rem;
}

section.contact .content {
	width: 100%;
}

@media (min-width: 600px) {
	.portfolio .item {
		width: 33.3333%;
	}

	.about article {
		width: 50%;
	}	
}