* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

				/*  ------------ Nav Bar ------------ */
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 6vh;
	background-color: #333;
	font-family: 'Poppins', sans-serif;
	padding: 0 20px;

	/* work area */
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
}

.fixed-bar {
	min-height: 6vh;
}
	/* end work area */

.logo a {
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 5px;
	font-size: 20px;
}

.logo a:hover {
	color: #969999;
}

.nav-links {
	display: flex;
	justify-content: space-around;
	width: 40%;
}

.nav-links {
	list-style: none;
}

.nav-links a {
	color: #fff;
	text-decoration: none;
	letter-spacing: 3px;
	font-weight: bold;
	font-size: 14px;
}

.nav-links a:hover {
	color: #969999;
}

.burger {
	display: none;
	cursor: pointer;
}

.burger div{
	width: 25px;
	height: 3px;
	background-color: rgb(226, 226, 226);
	margin: 5px;
	transition: all 0.3s ease;
}
				/*  ------------ End Nav Bar ------------ */

				/*  ------------ Showcase -------------- */
#showcase {		
	text-align: center;	
	/*width: 90%;
	margin: auto;*/
	/*background-color: yellow;     /* to visualize spacing */
	background-color: #fff;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#showcase h1 {
	font-size: 55px;		
	color: #000;		
	padding: 5px 0px;
	/*background-color: orange;		 /* to visualize spacing */
	background-color: #fff;
}

#showcase p {
	font-size: 18px;
	color: red;
	padding: 0px 10px;
}

					
				/* ------------ Main Body ------------ */
body {
	background-color: #bababa;
	/*background-color: #fff;*/
}

#alternate-idea {
	color: #000;
	/*background-color: green;*/
	background-color: #fff;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-align: center;
	/*width: 90%;*/
	/*margin: auto;*/
}

.about-body-resume {
	padding: 10px 10px;
	/*background-color: pink;*/
	background-color: #fff;
}

.about-body-container {
	width: 70%;
	margin: 0 auto;
	padding: 10px 10px;
	/*background-color: pink;*/
	background-color: #fff;
}

.profile-pic img {
	padding-top: 10px;
	border-radius: 50%;
}

.footer {
	display: flex;
	justify-content: space-around;
	width: 100%;
	background: #333;
	color: #fff;
	padding: .3rem 30%;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 2.5rem;
}

	.footer a {
		color: #fff;
		text-decoration: none;
	}

	.footer a:hover {
		color: #969999;
		text-decoration: none;
	}

				/* ------------ End Main Body ------------ */


				/*  ------------ Media Queries ------------ */

/*  ---  Desktop Version ---  */
@media screen and (min-width: 1024px) {
	#showcase {
		max-width: 1024px;
		margin: 0 auto;
	}

	#alternate-idea {
		max-width: 1024px;
		margin: 0 auto;
	}

	.about-image-iphone img {
		max-width: 90%;
		height: auto;
	}
}

/*  ---  Tablet Version ---  */
@media screen and (max-width: 1024px) {
	.nav-links {
		width: 60%;
	}

	.nav-links {
		position: fixed;
		right: 0px;
		height: 82vh;
		top: 6vh;
		background-color: #333;
		opacity: .9;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 50%;
		transform: translateX(100%);
		transition: transform 0.5s ease-in;
		z-index: 1;
	}
	.nav-links li {
		opacity: 0;
	}
	.burger {
		display: block;
	}
	.about-image-iphone img {
		max-width: 90%;
		height: auto;
	}
}

/*  ---  iPhone Version ---  */
@media screen and (max-width: 440px) {
	.logo a {
	font-size: 15px;
	}

	#showcase h1 {
		font-size: 30px;
	}

	.about-body-container {
		width: 90%;
	}

	.about-image-iphone img {
		max-width: 100%;
		height: auto;
	}
	
	body {
		overflow-x: hidden;
	}

	.footer {
		padding: .3rem 15%;
	}
}

.nav-active {
	transform: translateX(0%);
}
				/*  ------------ End Media Queries ------------ */



				/* ------------Animation ------------ */
@keyframes navLinkFade{
	from{
		opacity: 0;
		transform: translateX(50px);
	}
	to{
		opacity: 1;
		transform: translateX(0px);
	}
}


				/*  JavaScript .div hamburger lines  */
.toggle .line1 {
	transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
	opacity: 0;
}
.toggle .line3 {
	transform: rotate(45deg) translate(-5px, -6px);
}









