﻿@font-face {
	font-family: "PlusJakartaSansUpper";
	src: url(fonts/PlusJakartaSans-Bold.ttf);
}

@font-face {
	font-family: "PlusJakartaSansReg";
	src: url(fonts/PlusJakartaSans-Regular.ttf);
}

@font-face {
	font-family: "PlusJakartaSansMed";
	src: url(fonts/PlusJakartaSans-Medium.ttf);
}

@font-face {
	font-family: "InstrumentSansReg";
	src: url(fonts/InstrumentSans-Regular.ttf);
}

@font-face {
	font-family: "InstrumentSansMedItalic";
	src: url(fonts/InstrumentSans-MediumItalic.ttf);
}

@font-face {
	font-family: "InstrumentSansBold";
	src: url(fonts/InstrumentSans-Bold.ttf);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

img {
	user-select: none;
	-webkit-user-drag: none;
}

a {
	text-decoration: none;
	user-select: none;
	-webkit-user-drag: none;
	width: 43px;
	height: 43px;
}

button {
  all: unset;
  display: inline-block; 
  cursor: pointer;
}

button:focus {
  outline: none;
}

button:focus-visible {
  outline: 2px solid blue;
}

input, textarea {
	background-color: #fff;
	color: rgba(62, 47, 91);
	font-family: "InstrumentSansReg";
	font-size: 16px;
}

canvas {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}



/* Nav Menu */

nav {
	left: 0;      
    top: 0;       
    width: 100%;
	z-index: 2;
}

#navPageDesktop {
	margin: 15px 0 0 15px;
	position: fixed;
}

#navPageMobile {
	margin-top: 15px;
	position: fixed;
	display: none;
}


#navPageButton {
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: center;
	column-gap: 23px;
	list-style-type: none;
}

#navMobile {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	column-gap: 23px;
	list-style-type: none;
}

#navPageMobile.loaded {
	opacity: 1;
}

#mobileNavBack {
	display: none;
}

#sandwichTop, #sandwichMiddle, #sandwichBottom {
	width: 28px;
	border-width: 1px;
	border-image: linear-gradient(-95deg, rgba(227, 172, 57) 0%, rgba(179, 73, 150) 100%) 1;
	box-shadow: 5px 5px 5px rgba(62, 47, 91, .5);
	border-style: solid;
}

#sandwichMiddle {
	margin: 7px 0;
	transition: margin 0.5s;
}

#navSandwich:hover #sandwichMiddle {
	margin: 9px 0;
}

#navMobileMenu {
	position: relative;
	display: none;
}

#navMobileMenu li {
	width: 60%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: center;
}

.topNavButtonMobile {
	width: auto;
	position: relative;
	padding: 20px 70.5px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 10px;
	color: rgba(62, 47, 91); 
	font-family: "InstrumentSansReg";
	font-size: 9px;
}

.topNavButtonMobile:hover {
	color: #fff;
	background: linear-gradient(-95deg, rgba(179, 73, 150), rgba(227, 172, 57));
}

.topNavButtonMobile:hover + .mobileContentDivBreakpoint {
	border-image: linear-gradient(-95deg, rgba(179, 73, 150), rgba(227, 172, 57));
	border-image-slice: 1;
}

.mobileContentDivBreakpoint {
	width: auto;
	margin: 2px;
	border-image: rgba(62, 47, 91);
	border-width: 0.01px;
	border-style: solid;
}

.mobileContentDivBreakpointLonger {
	position: absolute;
	bottom: 0;
	width: 100%;
	border-image: linear-gradient(-95deg, rgb(179, 73, 150) 0%, rgb(227, 172, 57) 100%) 1;
	border-width: 5px;
	border-style: solid;
}

#mobileNavExitButton {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	right: -23px;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 50px;
	background: linear-gradient(-95deg, rgb(179, 73, 150) 0%, rgb(227, 172, 57) 100%);
}

#mobileNavExitButtonSign {
	position: relative;
	width: 80%; 
	height: 80%;
	border-radius: 50px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	background-image: url('images/navBarExitImage.svg');
	background-repeat: no-repeat;
	background-position: center;
}

#homeButton, #homeButtonMobile {
	position: relative;
	padding: 49px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background: rgba(62, 47, 91);
	box-shadow: 5px 5px 5px rgba(62, 47, 91, .5);
}

#homeButton {
	z-index: 3;
	transform: translateX(-100vw);
	transition: transform 1s;
}

#homeButton.loaded {
	transform: translateX(0);
}

#homeButton::after, #homeButtonMobile::after {
	content: '';
	position: absolute;
	width: 90%; 
	height: 90%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-image: url('images/navBarImage.svg');
	background-repeat: no-repeat;
	background-position: center;
}

#homeButton:hover, #homeButtonMobile:hover {
	background: linear-gradient(-95deg, rgba(227, 172, 57), transparent, rgba(179, 73, 150), transparent, rgba(227, 172, 57));
	background-size: 300%;
	animation: homeButtonGradientAnimation 3s infinite linear;
}

@keyframes homeButtonGradientAnimation {
	0% {
		background-position: 0% 50%;
	}

	100% {
		background-position: -300% 50%;
	}
}

.topNavButton {
	position: relative;
	z-index: 2;
	width: 151px;
	height: 60px;
	margin: -6px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	background-image: linear-gradient(-95deg, rgba(179, 73, 150), rgba(227, 172, 57));
	color: rgba(62, 47, 91);
	box-shadow: 5px 5px 5px rgba(62, 47, 91, .5);
	font-family: "InstrumentSansReg";
	font-size: 9px;
	transform: translateX(-100vw);
	transition: transform 3s;
}

.topNavButton.loaded {
	transform: translateX(0);
}

.topNavButton::after {
	content: '';
	position: absolute;
	width: 138px;
	height: 47px;
	background-color: #fff; 
	border-radius: 50px; 
}

.topNavButton:hover {
	color: #fff;
}

.topNavButton:hover::after {
	background-color: transparent;
}

.buttonConstSize {
	position: absolute;
	z-index: 3;
	font-size: 17px;
}



/* Header */

header {
	position: relative;
	height: 100vh;
	width: 100%;
	padding: 20vw;
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: end;
}

#frontPageInteraction {
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#intro {
	margin: 0 0 15px 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	font-family: "PlusJakartaSansUpper";
	font-size: 42px;
	color: rgba(62, 47, 91);
	opacity: 0;
	transition: opacity 3s;
	transition-delay: 0.1s;
}

#intro.loaded {
	opacity: 1;
}

.gradientColor {
	background: linear-gradient(-95deg, rgb(179, 73, 150), rgb(227, 172, 57), rgb(179, 73, 150));
	background-size: 200%;
	color: transparent;
	background-clip: text;
	animation: GradientColorGradientAnimation 3s infinite linear;
}


@keyframes GradientColorGradientAnimation {
	0% {
		background-position: 0% 50%;
	}

	100% {
		background-position: -200% 50%;
	}
}

#animatedColor span.loadedIn {
	transform: translateY(0);
	opacity: 1;
}

#animatedColor span.loadedOut {
	transform: translateY(-30px);
	opacity: 0;
}

/* Three.js Body */

#bodyCanvas {
	position: fixed;
	top: 0;
	left: 0;
}



/* About */

.contentSpacing {
	margin-top: 30vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.middleContentSizing {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#aboutTopContent {
	width: 727px;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	column-gap: 26px;
}

#aboutImage {
	position: relative;
	padding: 65px;
	border-radius: 50%;
	animation: AboutImageWobble 1.5s infinite linear;
	transition: top 1s;
	top: 0;
	box-shadow: 15px 15px 15px rgba(62, 47, 91, .5);
}

.aboutImageImage {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-image: var(--var-image);
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
}

.aboutImageImage.currentImage {
	opacity: 1;
}

#aboutImage::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	padding: 58%;
	background: linear-gradient(-95deg, rgb(179, 73, 150), rgb(227, 172, 57), rgb(179, 73, 150));
	background-size: 200%;
	border-radius: 50%;
	animation: GradientColorGradientAnimation 2s infinite linear;
}

@keyframes AboutImageWobble {

	0% {
		transform: rotate(0deg);
	}

	12% {
		transform: rotate(0deg);
	}

	24% {
		transform: rotate(-21deg);
	}

	36% {
		transform: rotate(-21deg);
	}

	48% {
		transform: rotate(8deg);
	}

	60% {
		transform: rotate(8deg);
	}

	72% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

#aboutImageHover:hover #aboutImage {
	top: -24px;
}

.sectionIntroTextLayout {
	padding: 7px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
}

.sectionHeaderText {
	background: linear-gradient(-95deg, rgb(179, 73, 150), rgb(227, 172, 57), rgb(179, 73, 150));
	background-size: 200%;
	color: transparent;
	background-clip: text;
	font-family: "PlusJakartaSansReg";
	font-size: 35px;
	animation: GradientColorGradientAnimation 3s infinite linear;
}

.contentDivBreakpoint {
	width: 900px;
	border-image: linear-gradient(-95deg, rgb(179, 73, 150) 0%, rgb(227, 172, 57) 100%) 1;
	border-width: 0.01px;
	border-style: solid;
}

.sectionIntroText {
	color: rgba(62, 47, 91);
	font-family: "PlusJakartaSansMed";
	font-size: 60px;
}

.sectionContentText {
	padding-top: 10px;
	width: 742.5px;
	color: rgba(62, 47, 91);
	font-family: "InstrumentSansReg";
	font-size: 22px;
}



/* Experience */

.sectionContentSizing {
	width: 80vw;
	max-width: 1600px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
}

.contentDivBreakpointLonger {
	width: 100%;
	border-image: linear-gradient(-95deg, rgb(179, 73, 150) 0%, rgb(227, 172, 57) 100%) 1;
	border-width: 0.01px;
	border-style: solid;
}

.alignBottomContent {
	margin-top: 45.5px;
	margin-bottom: 45.5px;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
}

#experienceSliderAreaBorder {
	margin-right: 61px;
	width: 60px;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
	border-radius: 30px;
	position: relative;
}

#experienceSliderAreaBorder::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 12px;
	border-radius: inherit;

	background: linear-gradient(-95deg, rgb(179, 73, 150), rgb(227, 172, 57));
	
	-webkit-mask:
    	linear-gradient(#000 0 0) content-box,
    	linear-gradient(#000 0 0);
	mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  	-webkit-mask-composite: xor;
  	mask-composite: exclude;
}

#experienceSliderAnimation {
	position: sticky;
	top: 33.3333333%;
	margin: 35px 15px;
	padding: 15px;
	background: radial-gradient( circle at 50% 0, rgb(255 255 255 / 50%), rgb(255 255 255 / 0%) 70.71% ), radial-gradient( circle at 6.7% 75%, rgb(179 73 150 / 50%), rgb(179 73 150 / 0%) 70.71% ), radial-gradient( circle at 93.3% 75%, rgb(227 172 57 / 50%), rgb(227 172 57 / 0%) 70.71% ) beige;
	border-radius: 50%;
}

#experienceBottomContent {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
}

.experienceFlexItem {
	position: relative;
	margin: 60px 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	opacity: 0.3;
	top: 25px;
	transition: all 1s;
}

.experienceFlexItem.contentLoaded {
	opacity: 1;
	top: 0;
}

.experienceFlexImage {
	width: 151px;
	padding: 15px;
	background: #fff;
	border-color: rgba(62, 47, 91);
	border-width: 9.5px;
	border-style: solid;
	border-radius: 50%;
}

.experienceFlexItemContent {
	padding-left: 61px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: rgba(62, 47, 91);
	font-family: "InstrumentSansBold";
	font-size: 22px;
}

.experienceFlexItemDatesContent {
	font-family: "InstrumentSansMedItalic";
	font-size: 18px;
}

.experienceFlexDetails {
	padding-top: 12px;
	text-align: start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	font-family: "InstrumentSansReg";
	font-size: 16px;
}



/* Skills */

.noSectionSpacing {
	margin: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#skillsBottomContent {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#skillsSoftwareGrid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 300px);
	column-gap: 35px;
	row-gap: 35px;
	align-items: center;
	justify-content: center;
}

.skillsSoftwareItemSizing {
	position: relative;
	padding: 45px 0;
	/*height: 480px;*/
	height: 430px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	opacity: 0.3;
	top: 25px;
	transition: all 1s;
}

.skillsSoftwareItemSizing.contentLoaded {
	opacity: 1;
	top: 0px;
}

.skillsSoftwareItemBorder {
	height: 100%;
	border-radius: 30px;
	position: absolute;
	inset: 0;
	padding: 12px;
	background:
  		linear-gradient(white, white),
  		linear-gradient(-95deg, rgb(179, 73, 150), rgb(227, 172, 57));
	background-clip: content-box, border-box;
	/*background: linear-gradient(-95deg, rgb(179, 73, 150), rgb(227, 172, 57));
	
	-webkit-mask:
    	linear-gradient(#fff 0 0) content-box,
    	linear-gradient(#fff 0 0);
	mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  	-webkit-mask-composite: source-over;
  	mask-composite: add;

	pointer-events: none;*/
}

.skillsSoftwareItemTopContent {
	position: relative;
	width: 240px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.skillsSoftwareItemDetails {
	padding-top: 10px;
	color: rgba(62, 47, 91);
	font-family: "InstrumentSansReg";
    font-size: 16px;
}

.skillsSoftwareItemTopHeader {
	background: linear-gradient(-95deg, rgb(179, 73, 150), rgb(227, 172, 57));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-family: "PlusJakartaSansReg";
	font-size: 15px;
}

.skillsSoftwareItemContent {
	color: rgba(62, 47, 91);
	font-family: "InstrumentSansBold";
	font-size: 19px;
}

.skillsSoftwareItemBottomContent {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.contentDivBreakpointSkills {
	width: 230px;
	margin: 12px 0;
	border-image: linear-gradient(-95deg, rgb(179, 73, 150) 0%, rgb(227, 172, 57) 100%) 1;
	border-width: 0.01px;
	border-style: solid;
}

.skillsSoftwareItemGrid {
	position: relative;
	width: 250px;
	display: grid;
	grid-template-columns: repeat(4, 50px);
	column-gap: 10px;
	row-gap: 10px;
	align-items: center;
	justify-content: center;
}



/* Projects */

.projectsBottomContent {
	width: 100%;
	max-width: 1600px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 29px;
}

.projectsItemSizing {
	position: relative;
	width: 970px;
	height: 190px;
	padding: 30px 30px;
	border-radius: 30px;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: start;
	cursor: pointer;
	transition: height 1s;
	overflow: hidden;
	border: 12px solid transparent;
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(-95deg, rgb(179, 73, 150), rgb(227, 172, 57)) border-box;
	border-image-slice: 1;
	opacity: 0.3;
	top: 25px;
	transition: all 1s;
}

.projectsItemSizing.contentLoaded {
	opacity: 1;
	top: 0;
}

.projectsItemSizing.projectClicked {
	height: 755.4px;
}

.projectsIntroSection {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.projectsProjectImage {
	height: auto;
	width: 260px;
	padding: 0 15px;
}

.contentDivBreakpointProjects {
	height: 100px;
	border-image: linear-gradient(-95deg, rgb(179, 73, 150) 0%, rgb(227, 172, 57) 100%) 1;
	border-width: 0.01px;
	border-style: solid;
}

.projectsProjectDetails {
	width: 280px;
	padding: 0 15px;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
}

.projectsProjectIntro {
	width: 340px;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
	padding: 0 15px;
}

.projectsSoftwareItemTopHeader {
	background: linear-gradient(-95deg, rgb(179, 73, 150), rgb(227, 172, 57));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-family: "PlusJakartaSansReg";
	font-size: 14px;
	margin: 6px 0;
}

.projectNameAndLogo {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-bottom: 6px;
}

.projectsProjectItemContent {
	font-family: "InstrumentSansBold";
    font-size: 19px;
}

.projectsProjectStackContent {
	width: max-content;
	height: 35px;
	border-radius: 50px;
	padding: 0 10px;
	background-color: rgba(62, 47, 91);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
}

.projectsSoftwareItemTechImageIntro {
	height: 35px;
	width: 35px;
	margin-right: 6px;
}

.projectsSoftwareItemTechImage {
	display: block;
	height: 23px;
	width: 23px;
	background: var(--var-image);
	background-repeat: no-repeat;
	background-position: center;
}

.projectsSoftwareItemTechImage::after {
	content: '';
	position: absolute;
	width: 23px;
	height: 23px;

	background: var(--var-image);
	background-repeat: no-repeat;
	background-position: center;

	filter: brightness(0) invert(1);

	opacity: 0.92;

	pointer-events: none;
}

.projectsProjectItemDetails {
	width: auto;
	color: rgb(62, 47, 91);
	font-family: "InstrumentSansReg";
	font-size: 16px;
}

.projectsImageGrid {
	width: 100%;
	padding: 40px 0;
	display: grid;
	grid-template-columns: repeat(2, 400px);
	column-gap: 35px;
	row-gap: 35px;
	align-items: center;
	justify-content: center;
}

.projectsImage {
	position: relative;
	height: auto;
	background-color: aqua;
	border-radius: 30px;
}

.projectArrow {
	position: absolute;
	width: 30px;
	height: 30px;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%) rotate(0deg);
	background-image: url("/images/projectDownArrow.svg");
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.3;
	transform-origin: center center;
	transition: all 1s;
}

.projectArrow.buttonClicked {
	transform: translateX(-50%) rotate(-180deg);
}

.projectsItemSizing:hover .projectArrow {
	opacity: 1;
}

.projectsButtonsColumn {
	padding-top: 40px;
	padding-left: 26px;
	width: 970px;
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: center;
	column-gap: 10px;
}

.projectsButtons {
	display: block;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 140px;
	height: 45px;
	border-radius: 10px;
	color: rgba(62, 47, 91);
	background: #fff;
	border: 3px solid rgba(62, 47, 91);
	font-family: "InstrumentSansReg";
	font-size: 13px;
	transition: all .2s;
}

.projectsButtons:hover {
	color: #fff;
	background: linear-gradient(-95deg, rgb(179, 73, 150), rgb(227, 172, 57));
	border: 3px solid rgba(227, 172, 57);
}



/* Contacts */

.alignBottomContentColumn {
	margin-top: 45.5px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
}

#contactsContent {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
}

.contactsLabelFont {
	color: rgba(62, 47, 91);
	font-family: "PlusJakartaSansReg";
	font-size: 17px;
}

.contactFormPadding {
	padding-top: 12px;
	display: block;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
}

.contactFormInput {
	width: 380px;
	padding: 9px;
	border-radius: 10px;
	border: 3px solid rgba(62, 47, 91);
	transition: all 2s;
}

.contactFormInput.error {
	box-shadow: inset 0 0 3px 2px rgba(179, 73, 150), inset 0 0 3px 2px rgba(227, 172, 57);
}

#contactsFormDiv.validate .contactFormInput:not(:focus):not(:placeholder-shown):invalid ~ #contactFormInput_NoSubjectValueError,
#contactsFormDiv.validate .contactFormInput:not(:focus):not(:placeholder-shown):invalid ~ #contactFormInput_NoEmailValueError,
#contactsFormDiv.validate .contactFormInput:not(:focus):not(:placeholder-shown):invalid ~ #contactFormInput_NoMessageValueError {
	visibility: visible;
	color: red;
}

#contactsFormDiv.validate .contactFormInput:not(:focus):not(:placeholder-shown):valid ~ #contactFormInput_NoSubjectValueError,
#contactsFormDiv.validate .contactFormInput:not(:focus):not(:placeholder-shown):valid ~ #contactFormInput_NoEmailValueError,
#contactsFormDiv.validate .contactFormInput:not(:focus):not(:placeholder-shown):valid ~ #contactFormInput_NoMessageValueError {
	visibility: hidden;
}

#contactFormInput_NoSubjectValueError.errorClass, 
#contactFormInput_NoEmailValueError.errorClass, 
#contactFormInput_NoMessageValueError.errorClass {
	visibility: visible;
	color: red;
}

#contactFormInput_NoSubjectValueError.verifiedClass, 
#contactFormInput_NoEmailValueError.verifiedClass, 
#contactFormInput_NoMessageValueError.verifiedClass {
	visibility: visible;
	color: green;
}

.contactFormInput:focus {
	outline: 0;
	box-shadow: inset 0 0 3px 2px rgba(179, 73, 150), inset 0 0 3px 2px rgba(227, 172, 57);
}

::placeholder {
	color: rgba(62, 47, 91);
	font-family: "InstrumentSansReg";
	font-size: 14px;
	opacity: 50%;
}

#contactFormInput_NoSubjectValueError, #contactFormInput_NoEmailValueError, #contactFormInput_NoMessageValueError {
	padding: 6px 0;
	visibility: hidden;
	font-family: "InstrumentSansReg";
	font-size: 14px;
}

.contactFormTextarea {
	outline: 0;
	resize: none;
	height: 130px;
	width: 430px;
}

.contactsButtonsColumn {
	padding-top: 6px;
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: center;
	column-gap: 10px;
}

.contactsFormButtons {
	display: block;
	cursor: pointer;
	width: max-content;
	padding: 0 40px;
	height: 45px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	color: rgba(62, 47, 91);
	background: #fff;
	border: 3px solid rgba(62, 47, 91);
	font-family: "InstrumentSansReg";
	font-size: 13px;
	transition: all .2s;
}

.contactsFormButtons:hover {
	color: #fff;
	background: linear-gradient(-95deg, rgb(179, 73, 150), rgb(227, 172, 57));
	border: 3px solid rgba(227, 172, 57);
}

#contactsButtonsContent {
	padding: 50px 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	column-gap: 30px;
}

.contactsImage {
	opacity: 100%;
	height: auto;
	width: max-content;
	transition: all .2s;
}

.contactsImage:hover {
	opacity: 50%;
}


/* Responsive Sizing */

@media only screen and (max-width: 991px) {
		/* Navbar */

		#navPageDesktop {
			display: none;
		}

		#navPageMobile {
			display: block;
			opacity: 0;
			transition: opacity 3s;
		}

		#navMobileMenu {
			z-index: 3;
			position: fixed;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-self: center;
			width: 300px;
			height: 100%;
			background-color: #fff;
			box-shadow: 5px 5px 5px rgba(62, 47, 91, .5);
			transform: translateX(-200vw);
			opacity: 0;
			transition: all 1s;
		}

		#navMobileMenu.sandwichClicked {
			transform: translateX(0);
			opacity: 1;
		}

		#mobileNavBack {
			z-index: -1;
			display: block;
			content: '';
			position: fixed;
			width: 0;
			height: 100%;
			background-color:rgba(62, 47, 91, .5);
			backdrop-filter: blur(2px);
			opacity: 0;
			transition: opacity 1s ease-in-out;
			cursor: pointer;
		}

		#mobileNavBack.sandwichClicked {
			width: 100%;
			z-index: 2;
			opacity: 1;
		}

		#homeButtonMobile {
			padding: 27px;
		}

		/* Header */

		#intro {
			font-size: 32px;
		}

		/* About */

		.contentSpacing {
			margin-top: 45vw;
		}

		#aboutTopContent {
			width: 505.7px;
		}

		#aboutImage {
			padding: 48px;
		}

		#aboutImageHover:hover #aboutImage {
			top: -20px;
		}
		
		.contentDivBreakpoint {
			width: 678.7px;
		}

		.sectionHeaderText {
			font-size: 24px;
		}

		.sectionIntroText {
			font-size: 41.8px;
		}

		.sectionContentText {
			width: 521.2px;
			font-size: 15.4px;
		}

		/* Experience */

		#experienceSliderAreaBorder {
			margin-right: 55px;
			width: 50px;
		}

		#experienceSliderAreaBorder::before {
			padding: 8px;
		}

		#experienceSliderAnimation {
			margin: 35px 16px;
			padding: 14px;
		}

		.experienceFlexImage {
			width: 124px;
			border-width: 6.5px;
		}

		.experienceFlexItemContent {
			padding-left: 55px;
			font-size: 18.5px;
		}

		.experienceFlexItemDatesContent {
			font-size: 16px;
		}

		.experienceFlexDetails {
			font-size: 15.4px;
		}

		/* Skills */

		#skillsSoftwareGrid {
			grid-template-columns: repeat(2, 300px);
			column-gap: 29px;
			row-gap: 29px;
		}

		.skillsSoftwareItemBorder {
			padding: 8px;
		}

		.skillsSoftwareItemSizing:last-of-type:nth-of-type(odd) {
			transform: translateX(50%) translateX(14.5px);
		}


		.skillsSoftwareItemDetails {
    		font-size: 15.4px;
		}

		.skillsSoftwareItemTopHeader {
			font-size: 13px;
		}

		.skillsSoftwareItemContent {
			font-size: 18.5px;
		}

		/* Projects */

		.projectsItemSizing {
			width: 629px;
			height: 395px;
			border: 8px solid transparent;
			padding-top: 20px; 
		}

		.projectsItemSizing.projectClicked {
			height: 808.43px;
		}

		.projectsIntroSection {
			flex-direction: column;
		}

		.projectsProjectImage {
			padding: 0;
			padding-bottom: 15px;
		}

		.contentDivBreakpointProjects {
			height: auto;
			width: 300px;
		}

		.projectsProjectDetails {
			padding: 0;
			padding-top: 15px;
		}

		.projectsProjectIntro {
			flex-direction: row;
			padding: 15px 0;
			column-gap: 15px;
			width: auto;
		}

		.projectsSoftwareItemTopHeader {
			font-size: 13px;
		}

		.projectNameAndLogo {
			margin-bottom: 0px;
		}

		.projectsProjectItemContent {
			font-size: 18.5px;
		}

		.projectsProjectItemDetails {
			font-size: 15.4px;
		}

		.projectsImageGrid {
			grid-template-columns: repeat(2, 250px);
		}

		.projectsButtonsColumn {
			padding-left: 0px;
			padding-top: 50px;
			width: 100%;
			justify-content: center;
		}

		.projectsButtons {
			font-size: 12px;
		}

		.projectArrow {
			opacity: 1;
		}

		/* Contacts */

		.contactsLabelFont {
			font-size: 15px;
		}

		.contactFormInput {
			width: 320px;
		}

		.contactFormTextarea {
			width: 370px;
		}

		.contactsFormButtons {
			padding: 13px 39px;
			font-size: 12px;
		}
}

@media only screen and (max-width: 767px) {
		/* Navbar */

		.topNavButtonMobile {
			height: 24px;
			padding: 5px 38.5px;
			font-size: 6px;
		}
		
		.mobileContentDivBreakpointLonger {
			border-width: 2px;
		}

		.buttonConstSize {
			font-size: 12px;
		}

		/* Header */

		header {
			justify-content: center;
			align-items: center;
		}

		#frontPageInteraction {
			left: 50%;
			bottom: 50%;
			transform: translateX(-50%) translateY(50%);
			width: 100%;
		}

		#intro {
			margin: 0px;
			align-items: center;
			font-size: 20px;
		}

		/* About */

		.contentSpacing {
			margin-top: 60vw;
		}

		#aboutTopContent {
			flex-direction: column;
			column-gap: 0px;
			row-gap: 10px;
			width: 293.8px;
		}

		#aboutImage {
			padding: 75px;
		}
		
		.contentDivBreakpoint {
			width: 466.8px;
		}

		.sectionHeaderText {
			font-size: 20px;
		}

		.sectionIntroTextLayout {
			align-items: center;
		}

		.sectionIntroText {
			text-align: center;
			font-size: 27px;
		}

		.sectionContentText {
			text-align: center;
			width: 410px;
			font-size: 16px;
		}
		
		/* Experience */

		.sectionContentSizing {
			align-items: center;
		}

		#experienceSliderAreaBorder {
			margin-right: 55px;
			width: 60px;
		}

		#experienceSliderAreaBorder::before {
			padding: 12px;
		}

		#experienceSliderAnimation {
			margin: 35px 15px;
			padding: 15px;
		}

		#experienceBottomContent {
			align-items: center;
		}

		.experienceFlexImage {
			width: 130px;
			border-width: 9.5px;
		}

		.experienceFlexItem {
			flex-direction: column;
		}

		.experienceFlexItemContent {
			text-align: center;
			padding-left: 0px;
			padding-top: 12px;
			font-size: 18px;
		}

		.experienceFlexDetails {
			font-size: 14px;
		}

		/* Skills */

		#skillsSoftwareGrid {
			grid-template-columns: repeat(1, 300px);
			column-gap: 29px;
			row-gap: 29px;
		}

		.skillsSoftwareItemBorder {
			padding: 12px;
		}

		.skillsSoftwareItemSizing:last-of-type:nth-of-type(odd) {
			transform: revert;
		}

		.skillsSoftwareItemContent {
			font-size: 18px;
		}
		.skillsSoftwareItemDetails {
    		font-size: 16px;
		}

		.skillsSoftwareItemTopHeader {
			font-size: 13px;
		}

		/* Projects */

		.projectsItemSizing {
			width: 400px;
			height: 455px;
			border: 12px solid transparent;
		}

		.projectsItemSizing.projectClicked {
			height: 1406.43px;
		}

		.projectsProjectIntro {
			flex-direction: column;
			align-items: center;
			column-gap: 0px;
			row-gap: 15px;
		}

		.projectsProjectItemContent {
			font-size: 18px;
		}

		.projectsProjectItemDetails {
			font-size: 16px;
		}

		.projectsImageGrid {
			grid-template-columns: repeat(1, 350px);
		}

		.projectsButtonsColumn {
			flex-direction: column;
			column-gap: 0px;
			row-gap: 10px;
		}

		.projectsButtons {
			width: 100%;
		}

		/* Contacts */

		#contactsContent {
			flex-direction: row;
		}

		.contactsLabelFont {
			font-size: 17px;
		}

		.contactFormInput {
			width: 100%;
		}

		.contactFormTextarea {
			width: 100%;
			height: 200px;
		}

		a {
			width: 33px;
			height: 33px;
		}
}

@media only screen and (max-width: 479px) {
		/* Navbar */

		#navMobileMenu {
			width: 165px;
		}
		
		/* Header */

		#intro {
			font-size: 13px;
		}
	
		/* About */

		.contentSpacing {
			margin-top: 80vw;
		}

		.contentDivBreakpoint {
			width: 280px;
		}

		#experienceTopContent .sectionHeaderText,
		#skillsTopContent .sectionHeaderText,
		#projectsTopContent .sectionHeaderText,
		#contactsTopContent .sectionHeaderText {
			font-size: 16px;
		}

		#experienceTopContent .sectionIntroText,
		#skillsTopContent .sectionIntroText,
		#projectsTopContent .sectionIntroText,
		#contactsTopContent .sectionIntroText {
			font-size: 18.5px;
		}

		.sectionContentText {
			width: 300px;
		}

		/* Experience */

		#experienceSliderAreaBorder {
			margin-right: 45px;
		}

		.experienceFlexItemContent {
			font-size: 16.5px;
		}

		.experienceFlexDetails {
			font-size: 13px;
		}

		/* Projects */

		.projectsItemSizing {
			width: 300px;
			height: 460px;
		}

		.projectsItemSizing.projectClicked {
			height: 1212.51px;
		}

		.projectsProjectImage {
			width: 230px;
		}

		.contentDivBreakpointProjects {
			width: 200px;
		}

		.projectsProjectStackContent {
			column-gap: 5.4px;
		}

		.projectsProjectDetails {
			width: auto;
		}

		.projectsImageGrid {
			grid-template-columns: repeat(1, 250px);
		}

		/* Contacts */

		.alignBottomContentColumn {
			align-items: center;
		}

		#contactsForm {
			width: 300px;
		}

		.contactsButtonsColumn {
			display: flex;
			flex-direction: column;
			row-gap: 3px;
		}

		.contactsFormButtons {
			padding: 13px 43px;
			width: 100%;
			height: 48px;
			text-align: center;
		}

		#contactsButtonsContent {
			width: 300px;
		}
}