@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Bebas Neue';
    src: url('font/BebasNeue-Regular.woff2') format('woff2'),
        url('font/BebasNeue-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Document */
body {
	background-color: #242424;
	margin: 0;
}
.topNavigation {
	background-color: #242424;
	height: 3.84rem;
	overflow: hidden;
	position: relative;
	box-shadow: 0 8px 16px 8px rgba(0,0,0,0.2);
}
.topNavigation a {
	float: right;
	display: block;
	color: #f5e9e2;
	text-align: center;
	padding: 1rem 2rem;
	text-decoration: none;
	font-size: 1.5rem;
	font-family: Montserrat, sans-serif;
	box-shadow: inset 0 0 0 0 #323232;
	transition: color .2s ease-in-out, box-shadow .2s ease-in-out;
}
.topNavigation .inactiveNav:hover{
	box-shadow: inset 0 -200px 0 0 #323232;
}
.topNavigation .activeNav {
	background-color: #f5e9e2;
	color: #242424;
}
.externalNav {
	background-color: #303030;
}
.externalNav:hover {
	text-decoration: underline;
}
.topNavigation .TopLabel {
	margin: 0 2rem 0 2rem;
	padding: 0;
	float: left;
	font-family: "Bebas Neue", sans-serif;
	font-size: 3rem;
	letter-spacing: 0.25rem;
}
#title-section {
	display: flex;
	align-items: center;
	font-family: Comfortaa, sans-serif;
	background-color: #323232;
	font-size: 2.5rem;
	position: relative;
	z-index: -150;
}
#title-section #introduction {
	color: white;
	user-select: none;
	margin-left: auto;
}
#title-section #portrait {
	margin-right: auto;
	margin-left: 5vw;
	height: 60rem;
}
#backdrop-canvas {
	position: absolute;
	z-index: -100;
}
#featured-projects {
	background-color: #242424;
	position: relative;
	z-index: 0;
	box-shadow: 0 -8px 16px 8px rgba(0,0,0,0.2);
}
#featured-projects-all {
	background-color: #242424;
	position: relative;
	z-index: 0;
	background-color: #202020;
}
#featured-projects-label {
	display: block;
	width: fit-content;
	margin: auto;
	padding: 2rem 0 2rem 0;
	text-align: center;
	font-size: 2.5rem;
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #f5e9e2;
}
#all-projects-label {
	display: block;
	width: fit-content;
	margin: auto;
	padding: 4rem 0 2rem 0;
	text-align: center;
	font-size: 3rem;
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #f5e9e2;
}

#all-projects-search {
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	align-items: center;
}
#all-projects-search #searchbar {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	background-color: rgba(245, 233, 226, 0.1);
	border: 1px solid rgba(245, 233, 226, 0.5);
	border-radius: 4rem;
	overflow: hidden;
	width: 40rem;
	height: 5rem;
}
#all-projects-search #searchbar #search-textinput {
	min-width: 0;
	padding: 1rem;
	background-color: rgba(0,0,0,0);
	flex-grow: 1;
	font-size: 2rem;
	border: none;
	outline: none;
	color: #f5e9e2;
	font-family: Montserrat, sans-serif;
}
#all-projects-search #searchbar #search-submit {
	padding: 1rem;
	height: 5rem;
	width: 5rem;
	min-width: 0;
	background-color: rgba(245, 233, 226, 0);
	border: none;
	border-radius: inherit;
	outline: none;
	color: #f5e9e2;
	font-family: Montserrat, sans-serif;
	cursor: pointer;
	transition: background-color .1s ease-in-out;
	position: relative;
}
#all-projects-search #searchbar #search-submit img {
	width: 60%;
	position: absolute;
	top: 20%;
	left: 20%;
}
#all-projects-search #searchbar #search-submit:hover {
	background-color: rgba(245, 233, 226, 0.1);
}

#all-projects-search #tag-search {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	max-width: 100rem;
}
#all-projects-search #tag-search button{
	display: block;
	padding: 0.5rem;
	margin: 1rem;
	font-size: 1.2rem;
	font-family: Montserrat, sans-serif;
	color: #f5e9e2;
	background-color: rgba(245, 233, 226, 0);
	border: 1px solid #f5e9e2;
	text-decoration: none;
	cursor: pointer;
	transition: color .2s ease-in-out, background-color .2s ease-in-out, border .2s ease-in-out;
}
#all-projects-search #tag-search button:hover{
	color: #323232;
	background-color: #f5e9e2;
	border: 1px solid rgba(0,0,0,0);
	text-decoration: none;
}
#all-projects-search #tag-search .selectedTag {
	color: #323232;
	background-color: #f5e9e2;
	border: 1px solid rgba(0,0,0,0);
	text-decoration: none;
}
#all-projects-search p {
	text-align: center;
	margin: 1rem 0 0rem 0;
	font-size: 1.5rem;
	font-family: Montserrat, sans-serif;
	color: #f5e9e2;
}
#featured-projects-cards {
	color: #f5e9e2;
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
}
#featured-projects-cards-searched {
	color: #f5e9e2;
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 5rem;
}
.project-card {
	background-color: #383838;
	border-radius: 3rem;
	max-width: 25rem;
	margin: 0 3rem 3rem 3rem;
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.project-card img {
	max-width: 100%;
	margin: auto;
	display: block;
}
.project-card h1 {
	font-family: Comfortaa, sans-serif;
	font-size: 2rem;
	font-weight: bold;
	margin: 2rem 1rem 2rem 1rem;
	max-width: 100%;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	text-align: center;
}
.project-card p {
	font-family: Montserrat, sans-serif;
	font-size: 1.3rem;
	margin: 1rem;
	color: #e6d5cd;
	text-align: center;
}
.project-card .project-card-tags {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
.project-card .project-card-tags a {
	text-decoration: none;
	color: #e6d5cd;
	font-family: Montserrat, sans-serif;
	font-size: 1rem;
	display: block;
	border: 1px solid #e6d5cd;
	padding: 0.5rem;
	margin: 1rem;
	border-radius: 0.4rem;
}
.project-card .project-card-tags a:hover {
	border: 1px solid #f5e9e2;
	color: #f5e9e2;
	background-color: #454242;
}
.project-card-link-spacer {
	flex-grow: 1;
}
.project-card-link {
	display: flex;
	max-width: 100%;
	justify-content: center;
}
.project-card-link a {
	display: block;
	text-decoration: none;
	color: #e6d5cd;
	border: 1px solid rgb(230, 213, 205);
	padding: 1rem;
	margin: 2rem;
	font-family: Montserrat, sans-serif;
	max-width: 60%;
	font-size: 2rem;
	transition: color .2s ease-in-out, background-color .2s ease-in-out, border .2s ease-in-out;
}
.project-card-link a:hover {
	color: #323232;
	background-color: #e6d5cd;
	border: 1px solid rgba(230,213,205,0);
}
#contactPage {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
	align-items: center;
	min-height: 80vh;
}
#contactPage img {
	width: 40rem;
	height: 40rem;
	border: none;
}
#contactInfo {
	text-align: center;
	color: #e6d5cd;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
}
#contactInfo h1 {
	font-family: 'Bebas Neue', sans-serif;
	letter-spacing: 0.4rem;
	font-size: 4rem;
}
#contactInfo a {
	display: block;
	width: 30rem;
	font-family: Comfortaa, sans-serif;
	font-size: 1.5rem;
	text-decoration: none;
	padding: 1.5rem;
	border: 1px solid #e6d5cd;
	color: #e6d5cd;
	border-radius: 1rem;
	margin: 1.5rem 0 1.5rem 0;
	transition: 0.2s ease-in-out;
	cursor: pointer;
}
#contactInfo a:hover {
	background-color: #e6d5cd;
	color: #323232;
	border: 1px solid rgba(0,0,0,0);
}

#footer {
	color: #e6d5cd;
	font-family: Comfortaa, sans-serif;
	font-size: 1.5rem;
	letter-spacing: 0.15rem;
	text-align: center;
	background-color: #323232;
	padding: 3rem;
}
#smicons {
	display: flex;
	justify-content: center;
}
#smicons img {
	width: 4rem;
	filter: contrast(0%) brightness(90%) sepia(30%);
	padding: 2rem;
	transition: filter .1s ease-in-out;
}
#smicons img:hover {
	filter: contrast(0%) brightness(110%) sepia(30%);
}
#ccdisclosure {
	font-family: Montserrat, sans-serif;
	letter-spacing: 0;
	font-size: 1rem;
}
#ccdisclosure a{
	color: #fff;
	text-decoration: none;
}
#ccdisclosure a:hover{
	text-decoration: underline;
}
.content {
	display: block;
	min-height: 100vh;
}
.redText {
	color: #F99190;
}
.blueText {
	color: #7be0d6;
}
.disableLineHeight {
	line-height: 0%;
}

