html, body {
	font-family: 'Open Sans', sans-serif;
	text-align: center;
}
* {
	margin: 0;
	padding: 0;
}
#navbar {
	position: fixed;
	width: 100%;
}
#navbar ul {
	text-align: right;
	background-color: #fff;
	border-bottom: solid 1px #ccc;
}
#navbar ul li {
	display: inline-block;
	margin: 2.5rem 0;
	margin-bottom: 1.2rem;
	margin-top: 1.2rem;
}
#navbar ul li a {
	padding: 1.2rem;
	color: #00a;
	text-decoration: none;
}
#navbar ul li a:hover {
	color: #fff;
	background-color: #00a;
}
#welcome-section {
	background: #f3f4f6;
	height: 100vh;
	font-size: 1.2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#welcome-section p {
	color: #00a;
}
#projects {
	background-color: #fff;
	height: 40rem;
}
#projects .work-header {
	color: #000;
	font-weight: normal;
	padding-top: 5rem;
}
.project {
	text-decoration: none;
	color: #000;
	display: inline-block;
	overflow: hidden;
	border: 0px solid #00a;
	height: 220px;
	width: 280px;
	margin: 40px 100px;
}
.project:hover {
	background-color: #00a;
	color: #fff;
}
.project-pic {
	width: 100%;
	height: 180px;
}
.project-title {
	font-weight: bold;
	margin: 4px 0 0;
}
.show-all {
	text-decoration: none;
	display: block;
	width: 200px;
	height: 30px;
	margin: 20px auto 90px;
	background: #fff;
	color: #000;
	font-weight: bold;
	font-size: 1em;
	border: 2px solid #00a;
	border-radius: 4px;
	cursor: pointer;
	padding-top:10px;
}
.show-all:hover {
	background: #00a;
	color: #fff;
}
#contact {
	background: #f3f4f6;
	height: 30rem;
}
.header {
	padding: 5rem 0;
}
.contact-details {
	display: inline-block;
	font-weight: bold;
	margin: 0 2rem;
	border: 2px solid #00a;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	line-height: 100px;
	background: #fff;
	color: #000;
	text-decoration: none;
}
.contact-details:hover {
	background: #00a;
	color: #fff;
}
footer {
	padding: 1rem;
	background: #22313F;
	color: white;
	line-height: 2.5rem;
}
footer a {
	color: white;
}


@media only screen and (max-width: 1024px) {
	nav ul {
		text-align: center;
	}
	nav ul li {
		margin: 20px;
	}
	.project {
		margin: 40px 0;
	}
}
@media only screen and (max-width: 411px) {
	#projects {
		height: 55rem;
	}
	.contact-details {
		border: 2px solid #ccc;
		border-radius: 0;
		width: 7rem;
		height: 1rem;
		padding: 1rem;
		line-height: normal;
	}
}