/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ---------------------- */
/* My Changes Start Here: */
/* ---------------------- */

/* DEFINED CONSTANTS, ANIMATIONS, & BASICS */
:root {
	--dark-stone: #1E1E1E;
	--darkest-purple: #28104E;
	--dark-purple: #6237A0;
	--medium-purple:#9754CB;
	--light-purple: #DEACF5;
}

#trail {
	position: absolute;
	width: 7px;
	height: 7px;
	background-color: var(--medium-purple);
	border-radius: 50%;
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.8s linear, transform 0.8s linear;
}

body {
	background-color: var(--dark-stone);
	font-family: "Darker Grotesque";
	font-weight: 700;
}

.backgroundScrollColor {
	background-color: var(--light-purple);
}

/* -------------------- */
/*     MOBILE FIRST     */
/* -------------------- */

h1 {
	font-size: 100px;
}

h2 {
	padding-top: 1vw;
	font-size: 6vw;
}

p {
	font-size: 1rem;
	padding-top: 1vw;
}

/* ------------ */
/* LANDING PAGE */
/* ------------ */

.landingPage {
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--medium-purple);
	background-color: var(--dark-stone);
}
/* ------------ */
/* ABOUT ME PAGE */
/* ------------ */

.aboutMePage {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color:var(--darkest-purple);
}

.aboutMePage h2 {
	color: var(--light-purple);
	font-size: 6vw;
	margin-top: 5%;
	margin-bottom: 5%;
}

.mainAboutMe {
	margin-bottom: 100px;
	display: flex;
	flex-direction: row; 
	align-items: center;
	justify-content: space-evenly;
}

.pictureMe {
	width: 30vw;
}

.aboutMePage img {
	height: 100%;
	width: 100%;
	border: 1px solid var(--light-purple);
	border-radius: 5%;
}

.codeText {
	white-space: pre-wrap;
	font-family: 'Courier Prime', monospace;
	font-weight: 300;
	border: 1px solid var(--light-purple);
	border-radius: 5%;
	padding: 1rem;
	color: white;
	background-color: var(--dark-stone);
}

.greyCode {
	color: grey;
}

.pinkCode {
	color: fuchsia;
}

.greenCode {
	color: #a5d46a;
}

.yellowCode {
	color: #ffff80;
}

.blueCode {
	color: lightBlue;
}

.redCode {
	color: #ffa080;
}

.pinkCode {
	color: pink;
}

.orangeCode {
	color: orange;
}

/* ------------ */
/* COURSEWORK PAGE */
/* ------------ */

.courseworkPage {
	background-color: var(--light-purple);
	color: var(--darkest-purple);
	font-family: "Darker Grotesque";
	display: flex; 
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.courseworkPage div {
	padding-bottom: 1vw;
}

.courseworkPage h2 {
	font-size: 6vw;
	padding-top: 4vw;
	padding-bottom: 4vw;
}

.courseworkPage div p {
	/* font-family: "Inter"; */
	font-weight: 400;
	text-align: center;
	font-size: 1.5rem;
	padding: 0.2rem;
}

.courseworkPage h3 {
	font-size: 4vw;
	text-align: center;
}

.totalCoursework {
	border: 2px solid var(--darkest-purple);
	border-radius: 5%;
	padding: 1vw 2vw;
	margin-bottom: 5vw;
}

/* ------------- */
/* PROJECTS PAGE */
/* ------------- */

.projectsPage {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--dark-stone);
	color: var(--light-purple);
	padding-bottom: 10vh;
}

.projectsPage h2 {
	font-family: "Darker Grotesque";
	text-align: center;
	padding-top: 2vw;
	font-size: 5vw;
}

.projectFlex {
	width: 80%;
	display: flex;
	flex-direction: column;
}

.projectRow {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.projectBox {
	border: 1px solid var(--light-purple);
	border-radius: 5%;
	width: 40%;
	height: 400px;
}


/* -------------------- */
/*   COMPUTER SCREEN    */
/* -------------------- */

@media screen and (min-width: 1024px){
	
	h2 {
		padding-top: 1vw;
		font-size: 3vw;
	}
	
	p {
		font-size: 2.5vw;
		padding-top: 1vw;
	}
	
	.backgroundScrollColor {
		background-color: var(--light-purple);
	}
	
	/* ------------ */
	/* LANDING PAGE */
	/* ------------ */
		
	h1 {
		font-size: 10vw;
	}
	
	.landingPage {
		height: 100vh;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	/* ------------ */
	/* ABOUT ME PAGE */
	/* ------------ */
	
	.aboutMePage {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.aboutMePage h2 {
		font-size: 6vw;
		margin-top: 5%;
		margin-bottom: 5%;
	}
	
	.mainAboutMe {
		margin-bottom: 100px;
		display: flex;
		flex-direction: row; 
		align-items: center;
		justify-content: space-evenly;
	}
	
	.pictureMe {
		width: 30vw;
	}
	
	.aboutMePage img {
		height: 100%;
		width: 100%;
		border-radius: 5%;
	}
	
	.codeText {
		white-space: pre-wrap;
		border-radius: 5%;
		padding: 1rem;
	}
	
	/* ------------ */
	/* COURSEWORK PAGE */
	/* ------------ */
	
	.courseworkPage {
		display: flex; 
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
	.courseworkPage div {
		padding-bottom: 1vw;
	}
	
	.courseworkPage h2 {
		font-size: 6vw;
		padding-top: 4vw;
		padding-bottom: 4vw;
	}
	
	.courseworkPage div p {
		text-align: center;
		font-size: 1.5rem;
		padding: 0.2rem;
	}
	
	.courseworkPage h3 {
		font-size: 4vw;
		text-align: center;
	}
	
	.totalCoursework {
		border-radius: 5%;
		padding: 1vw 2vw;
		margin-bottom: 5vw;
	}
	
	/* ------------- */
	/* PROJECTS PAGE */
	/* ------------- */
	.projectsPage {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-bottom: 10vh;
	}
	
	.projectsPage h2 {
		text-align: center;
		padding-top: 2vw;
		font-size: 5vw;
	}
	
	.projectFlex {
		width: 80%;
		display: flex;
		flex-direction: column;
	}
	
	.projectRow {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}
	
	.projectBox {
		border-radius: 5%;
		width: 40%;
		height: 400px;
	}
}
