body {
  background-color: #f1f1f1;
/* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 200 200'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='100' y1='33' x2='100' y2='-3'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23000' stop-opacity='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='100' y1='135' x2='100' y2='97'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23000' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='%23cdcdcd' fill-opacity='0.11'%3E%3Crect x='100' width='100' height='100'/%3E%3Crect y='100' width='100' height='100'/%3E%3C/g%3E%3Cg fill-opacity='0.11'%3E%3Cpolygon fill='url(%23a)' points='100 30 0 0 200 0'/%3E%3Cpolygon fill='url(%23b)' points='100 100 0 130 0 100 200 100 200 130'/%3E%3C/g%3E%3C/svg%3E");background-color: #f1f1f1; */
/* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 200 200'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='100' y1='33' x2='100' y2='-3'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23000' stop-opacity='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='100' y1='135' x2='100' y2='97'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23000' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='%23cdcdcd' fill-opacity='0.11'%3E%3Crect x='100' width='100' height='100'/%3E%3Crect y='100' width='100' height='100'/%3E%3C/g%3E%3Cg fill-opacity='0.11'%3E%3Cpolygon fill='url(%23a)' points='100 30 0 0 200 0'/%3E%3Cpolygon fill='url(%23b)' points='100 100 0 130 0 100 200 100 200 130'/%3E%3C/g%3E%3C/svg%3E"); background by SVGBackgrounds.com */
font-family: 'Raleway', sans-serif;
min-width: 240px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* margin-bottom: 0.5em; */
}
#loader-container {
	display: flex;
	width: 50px;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	left: 50%;
}
#red,
#green,
#blue {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	animation: balls 0.6s linear infinite;
}
#red {
	background: red;
}
@keyframes balls {
	0% {
		transform: translateY(0);
	}
	25% {
		transform: translateY(-10px);
	}
	50% {
		transform: translateY(0px);
	}
	75% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(0);
	}
}
#green {
	background: green;
	animation-delay: 0.2s;
}

#blue {
	background: blue;
	animation-delay: 0.3s;
}

/* nav */
#showcap {
	visibility: hidden;
	/* margin-top: 3.75em; */
}

#nav-container {
	/* position: fixed;
	top: 0; */
	width: 100%;
	height: 3.125em;
	/* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid;
	/* 	width: 50%; */
	/* border-bottom: 5px solid; */
	/* background: #eee; */
  z-index: 1;
  /* margin-top: 1em; */
}
/* redirect up */
.up {
	position: fixed;
	right: 0.1em;
	bottom: 2em;
	font-size: 2.5em;
}
/* drive */
#drive {
	margin-left: 0.4em;
	font-size: 1.5em;
}
/* sun & moon */
#button-container {
	position: relative;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	outline: none;
	border: none;
}
#dark,
#light {
	position: absolute;
	padding: 5px;
	display: inline;
	font-size: 1.5rem;
	outline: none;
	border: none;
	cursor: pointer;
}
#dark {
	background: #555;
	color: #fff;
}
#light {
	background: #eee;
	color: #000;
}
#dark:hover {
	font-size: 1.7rem;
}
#light:hover {
	font-size: 1.7rem;
}
.alter {
	background-color: #555;
	color: #fff;
}
/* hamburger */
/* hamburger-menu */
#hamburger-container {
	width: 3.125em;
	height: 3.125em;
	display: flex;
	justify-content: center;
	align-items: center;
}
#hamburger {
	width: 1.75em;
	height: 0.275em;
	background-color: #000;
	border-radius: 0.7em;
	transition: 0.1s;
	position: relative;
}
#hamburger::after, #hamburger::before {
	content: '';
	width: 0.875em;
	height: 0.275em;
	background-color: #000;
	border-radius: 0.7em;
	transition: 0.1s;
	position: absolute;
}
#hamburger::after {
	transform: translateY(0.70em);
}
#hamburger::before {
	transform: translateY(-0.70em);
}
.open #hamburger {
	background-color: transparent;
}
.open #hamburger::after {
	transform: rotate(45deg);
	width: 1.75em;
}
.open #hamburger::before {
	transform: rotate(-45deg);
	width: 1.75em;
}
.menu-bar {
	visibility: hidden;
	position: fixed;
	top: 50px;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	/* display: flex; */
	z-index: 100;
}
ul {
	list-style-type: none;
	/* width: inherit; */
  height: 100%;
  /* float: right; */
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
  align-items: flex-end;
	margin-right: 0.5em;
	position: relative;
}
li {
	height: 2.5em;
	/* padding: 0 2em; */
	width: 6.25em;
	border-radius: 1.2em 0 0 1.2em;
	display: flex;
	align-items: center;
	margin-top: 0.25em;
}
li:nth-child(1) {
	background: #ffeaed;
}
li:nth-child(2) {
	background: #e5d9ff;
}
li:nth-child(3) {
	background: #7ca322;
}
li a {
	text-decoration: none;
	color: #222;
	font-weight: 900;
	font-size: 1.3rem;
	/* text-align: right; */
	position: absolute;
	right: 0;
}
a {
	color: black;
}
li:hover a {
	color: #fff;
}
li:hover {
	background: #555;
}
.reveal {
	visibility: visible;
}
/* intro */
#intro {
	margin-top: 2em;
}
#intro h1 {
  font-size: 55px;
}
#content-container {
  width: 80%;
  margin: auto;
  text-align: center;
}
#header {
  margin-top: 0.5em;
  padding: 0.25em 0.5em;
  background-color: coral;
  display: inline-block;
	border-radius: 1.28em;
	text-transform: uppercase;
	color: #fff
}
#name {
	font-family: 'Playfair Display', serif;
}
#title {
	margin-top: 1em;
}
#title * {
	display: inline-block;
}
#brief-bio {
	line-height: 1.5em;
	margin-top: 1em;
}
#download {
  /* width: 150px;
  height: 50px; */
  /* display: flex;
  justify-content: space-around;
  align-items: center; */
  margin: 1em auto auto auto;
  padding: 0.75em 0;
  border-radius: 1.28em;
  background-color: #fc3549;
  color: #fff;
	border: none;
	width: 80%;
	cursor: pointer;
	box-shadow: 0px 9px 29px rgba(252, 53, 73, 0.22);
}
#download i {
	float: left;
	margin-left: 1em;
}
#download span {
	display: inline-block;
	font-family: 'Raleway', serif;
	/* margin: auto; */
}
img {
	display: block;
	margin: auto;
}
#bio-image {
	width: 200px;
  height: 200px;
	border-radius: 50%;
	margin-bottom: 2em;
}
.sm-font {
	font-size: 0.7rem;
}
@media (min-width: 768px)  {
	#content-container {
		width: 80%;
		margin: auto;
		text-align: center;
	}
	#intro {
		display: flex;
		justify-content: space-between;
	}
	#bio-image {
		width: 250px;
		height: 250px;
	}
	#caption {
		margin-left: 1em;
	}
	#download {
		width: 50%;
	}
}
@media (min-width: 1024px)  {
	#content-container {
		width: 75%;
		margin: auto;
		text-align: center;
	}
	#intro {
		display: flex;
		justify-content: space-between;
	}
	#bio-image {
		width: 250px;
		height: 250px;
	}
	#caption {
		margin-left: 1em;
	}
	#download {
		width: 50%;
	}
}
/* about me */
#about {
	text-align: left;
	margin-top: 2em;
	/* font-family: 'Playfair Display', serif; */
}
#about h2 {
	margin: 0.5em auto;
	font-weight: 900;
}
#about > p {
	margin-bottom: 0.5em;
}
#about span {
	margin-bottom: 0.5em;
	display: inline-block;
}
#social {
	font-size: 2rem;
	margin-bottom: 1em;
}
#social i:hover {
	color: rgba(0, 0, 0, 0.9);
	transform: rotate(5deg);
}
/* skills */
#skills {
	margin-bottom: 2em;
}
#skills h2 {
	margin: 0.5em 0;
	font-weight: 900;
}
#icon-set {
	display: flex;
	justify-content: space-around;
}
#icon-set i {
	font-size: 6em;
}
#icon-wrapper {
	display: flex;
	flex-direction: column;
}
#icon-wrapper span {
	margin-top: 0.25em;
}
.html {
	color: rgb(249, 71, 7);
}
.css {
	color: rgb(23, 35, 137);
}
.js {
	color: rgb(223, 186, 20);
}
.react {
	color: rgb(99, 71, 204);
}
.jquery {
	color: rgb(58, 35, 107);
}
.git {
	color: rgb(66, 105, 88);
}
.nodejs {
	color: rgb(69, 8, 20);
}
.terminal {
	color: rgb(136, 89, 203);
}
.sass {
	color: rgb(247, 31, 162);
}
.figma {
	color: rgb(34, 158, 6);
}

#skill-icons {
	margin-top: 1em;
}
#icon-wrapper span {
	margin-bottom: 1em;
	font-weight: 900;
}
#skill-icons i {
	background-color: rgba(255, 255, 255, 0.8);
	/* border: 2px solid; */
	box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3), -1px -2px 6px rgba(0, 0, 0, 0.15);
}

/* projects */
#projects h2 {
	margin: 0.5em 0;
	font-weight: 900;
}
#project-item {
	width: 100%;
	/* border: 2px solid; */
	box-shadow: 2px 6px 8px rgba(0, 0, 0, 0.5);
	border-radius: 0.625em;
	overflow: hidden;
}
#project-item img {
	width: 100%;
  height: auto;
}
#project-item-caption {
	line-height: 1.5em;
}
#tools-container span {
		margin-top: 0.5em;
		padding: 0.125em 0.5em;
		background-color: rgb(80, 135, 255);
		display: inline-block;
		border-radius: 0.625em;
		color: #fff;
		font-size: 0.5em;
		letter-spacing: 0.2em;
		line-height: initial;
}