body, html{
	background-color: white;
	color: #575757;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
	font-family: nobel, sans-serif;
	font-style: normal;
	margin:0;
    padding:0;
}

h1 {
	font-family: nobel, sans-serif;
	font-weight: 300;
	font-style: normal;
}

p {
	margin-top: 2%;
	margin-bottom: 2%;
	font-family: nobel, sans-serif;
	font-weight: 300;
	font-style: normal;
}

a {
	text-decoration: none;
	color: #575757;
	transition: 0.3s;
}

a:hover {
	color: #8d8d8d;
}

.container {
	display: flex; 
	align-items: center; 
	justify-content: center;
	flex-wrap: wrap;
	align-content: center;
}

.row {
	flex-direction: row;
}

.column {
	flex-direction: column;
}

.page-content {
	width:100%;
}

/**Navbar**/
#nav {
	left: 0%;
	right: 0%;
	background-color: white;
	position: fixed;
	top: -70px;
	display: block;
	transition: top 0.4s;
	box-shadow: 2px 2px 5px #aaaaaa;
	z-index: 1;

}

.nav-item:first-child {
	float: left;
	font-weight: 500;
}

.nav-item {
	color: #2a2d34;
	float: right;
	display: block;
	text-align: center;
	padding: 22px;
	text-decoration: none;
	font-size: 17px;
	font-weight: 500;
}

.nav-item:hover {
	color: #2a2d34;
	transition: 0.5s;
}


.nav-item:hover:after {
    transform: scaleX(1);
}

.nav-item::after {
    display:block;
    content: '';
    border-bottom: solid 3px #d3cbf5;  
    transform: scaleX(0);  
    transition: 350ms ease-in-out;
    transform-origin: 0% 50%;
}


/**Home**/
#home-section {
	height: 100vh;
	display: flex; 
	align-items: center; 
	justify-content: center;
	flex-wrap: wrap;
	align-content: center;
}


#landing-container {
	padding-right: 4%;
}

#landing-text {
	max-width:90%;
	text-align: center;
}

.title {
	max-width: 100%;
	font-size: 350%;
	margin-top: 5%;
	margin-bottom: 2%;
}

.subtitle {
	letter-spacing: 2px;
	max-width: 100%;
	font-size: 175%;
}

#app {
	font-size:150%;
}

#profile-icon {
	width: 500px;
}

.arrow {
	border: solid black;
	border-color: #575757;
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding: 10px;
	transform: rotate(45deg);
  	-webkit-transform: rotate(45deg);
  	transition: 0.3s;
  	animation: bounce 3s infinite;
  	margin: 20px;
}

.arrow:hover {
	-webkit-animation-play-state: paused;
	opacity: 60%;
	transform: scale(1.25) rotate(45deg);
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-30px) rotate(45deg);
  }
  60% {
    transform: translateY(-15px) rotate(45deg);
  }
}


/**About**/

#about-img {
	height: 450px;
	border-radius: 4px;
	border-top: 20px solid #e5e5e5;
	box-shadow: 12px 12px 1px #d7d3e7;
	overflow-y:hidden;
	margin: 40px;
	margin-top: 20px;
}

#img-console {
	width: 100%;
}

#about-section {
	background-color: #F0F0F0;
	padding: 50px;
	min-height:100vh;
}

#console {
	margin: 40px;
	margin-top: 20px;
	width: 550px;
	border-radius: 10px;
	background-color: #2d2d3f;
	box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.07);
	overflow: hidden;
	font-family: 'JetBrains Mono', 'Courier New', monospace;
}

#terminal-titlebar {
	background-color: #3a3a50;
	padding: 10px 16px;
	display: flex;
	align-items: center;
	position: relative;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	user-select: none;
}

#terminal-dots {
	display: flex;
	gap: 7px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: inline-block;
}

.dot-red    { background-color: #FF5F57; }
.dot-yellow { background-color: #FEBC2E; }
.dot-green  { background-color: #28C840; }

#terminal-title {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255,255,255,0.4);
	font-size: 12px;
	font-family: 'JetBrains Mono', monospace;
	letter-spacing: 0.5px;
}

#terminal-body {
	padding: 20px 30px 24px;
	overflow: auto;
	max-height: 430px;
	line-height: 24px;
	font-size: 87%;
}

#code-block {
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	white-space: pre;
	color: #a6accd;
}

#console a {
	text-decoration: underline;
	color: #ffcb6b;
}

.repl-prompt {
	color: #28C840;
	user-select: none;
}

.comment-color {
	color: #6272a4;
}

.terminal-cursor {
	display: inline-block;
	width: 8px;
	height: 15px;
	background-color: #a6accd;
	margin-left: 3px;
	vertical-align: text-bottom;
	animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {
	0%, 100% { opacity: 1; }
	50%       { opacity: 0; }
}

ul { 
	margin: 0; 
	padding-left: 24px; 
}

.first-color {
	color: #c792ea;
}

.second-color {
	color: #a6accd;
}

.third-color {
	color: #89ddff;
}

.fourth-color {
	color: #ffcb6b;
}

.fifth-color {
	color: #82aaff;
}

/**Education**/

#text .subtitle {
	margin-bottom:40px;
}

#education-section {
	padding:50px;
	padding-bottom: 80px;
	min-height:100vh;
	background-color: #474d5a;
}

/* #text {
	background-color: #474d5a;
	padding-top:0px;
} */

/* .parallax {
	background-image: linear-gradient(147deg, #FFFFFF 0%, #04619f 74%);
  	min-height: 500px; 
  	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
} */

#education-section * {
	color:white;
}

#education-title img {
	width: 10%;
}

#school {
	align-items: flex-start;
}

#school p {
	font-size: 14px;
}

#school * {
	margin: 8px;
}

#coursework {
	align-items: flex-start;
	font-size: 120%;
}

li {
	margin: 5px;
}

ul {
	list-style-type: circle;
}

#progress {
	font-size: 80%;
}

/**Projects**/

#project-section {
	margin: 50px;
}

#button-section {
	justify-content: center;
	align-items: center;
}

.filter-button {
	border: none;
	outline: none;
	padding: 12px 16px;
	background-color: #f1f1f1;
	cursor: pointer;
	border-radius: 4px;
	margin: 4px;
	transition: 0.3s;
}

.filter-button:hover {
	background-color: #ddd;
}

.filter-button.active {
	background-color: #474d5a;
	color: white;
}

.each-project {
	position: relative;
	height: 350px;
	width: 350px;
	margin: 3%;
	display: none;
}

.show {
	display: block;
  }

.proj-img {
	width: 350px;
	height: auto;
	border-radius: 6px;
	image-rendering: crisp-edges;
}

.certifications .proj-img {
	image-rendering: auto;
}


.proj-description {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #F8F8F8;
	color: #fff;
	visibility: hidden;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity .4s, visibility .4s;
}

.each-project:hover .proj-description {
	visibility: visible;
	opacity: 0.9;
}

.proj-description:hover {
	opacity: 1;
}

.img-description {
	transition: .5s;
	color: #575757;
	text-align: center;
	margin-left: 25px;
	margin-right: 25px;
	padding-left: 25px;
	padding-right: 25px;
}

.img-description i, .img-description p, .img-description a {
	font-family: 'Lato', sans-serif;
	text-decoration: none;
	font-weight: 100;
	line-height: 24px;
}

.img-description p {
	font-size: 10px
}

.img-description i {
	font-size: 10px;
}

.img-description:hover {
	opacity: 1;
}



/**Footer**/

#footer {
	height: 6em;
	text-align: center;
	background-color: #F0F0F0;
}

#social-container * {
	padding: 6px;
	margin-bottom: 6px;
}

#social-container a {
	color: #575757;
	transition: .4s;
}

#social-container a:hover {
	color: #8d8d8d;
}

@media (max-width: 700px) {
	#console {
		width: 90%;
		margin: 20px auto;
	}
	#terminal-body {
		font-size: 78%;
		padding: 14px 16px 18px;
	}
	#img-console {
		flex-direction: column;
	}
	#about-img {
		height: 300px;
		margin: 10px auto;
	}
}

#copyright {
	color: #8d8d8d;
	font-size:14px;
}
