@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Roboto:wght@500&display=swap');

/*Master Styles */
body {
	margin: 10px;
	background-image: url("bkg2.jpg");
	/*background-repeat: no-repeat;*/
	background-size: cover;
}

.container {
	display: grid;
	grid-template-columns: 1fr;
}

/*Nav Styles */
.nav-wrapper {
	display: flex;
	justify-content: space-between;
	padding: 6vh 38px;

}

.left-side {
	display: flex;
}

.nav-wrapper>.left-side>div {
	margin-right: 20px;
	font-size: 0.9em;
	text-transform: uppercase;
}

.nav-link-wrapper {
	height: 22px;
	border-bottom: 1px solid transparent;
	transition: border-bottom 0.5s;
}

.nav-link-wrapper a {
	color: #708090;
	text-decoration: none;
	transition: color 0.5s;
}

.nav-link-wrapper:hover {
	border-bottom: 1px solid black;
}

.nav-link-wrapper a:hover {
	color: black;
}

/* Portfolio styles */

.portfolio-items-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	margin: 5px;

}

.portfolio-item-wrapper {
	position: relative;
	margin: 5px;

}

.portfolio-img-background {
	height: 350px;
	width:100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 10px;
}

.img-text-wrapper {
	position: absolute;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	text-align: center;
	/*padding-left: 100px;
		padding-right: 100px;*/
}

.logo-wrapper {
	width: 100%;
	margin-bottom: 20px;
}

/* Need to be more specific with selector*/
.img-text-wrapper .subtitle {
	transition: 1s;
	font-weight: 600;
	/*background: white;*/
	margin-top: 40%;
	padding: 20px 0;
	color: transparent;
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	width: 100%;

}

.img-text-wrapper:hover .subtitle {
	font-weight: 600;
	/*color:   #a7ffe3; */
	color: #fff;
	background-color: rgba(0, 0, 0, 0.7);
}

.img-darken {
	transition: 1s;
	filter: brightness(10%);


}

.page-title h1 {
	text-align: center;
}

/*subtitle{
	
	
	}
	*/


/* About Trish Styles */
.about-writeup {
	line-height: 2rem;
	/* background-color: whitesmoke; */
}



/* About Trish Styles */


/* Contact Trish Styles */

.page-title {
	margin-bottom: 2vh;
	color: #56045d;
	text-align: center;
}

input,
textarea,
label {
	display: block;
	margin: 0 auto;
	width: 100%;
}

input,
textarea {
	background-color: transparent;
	border: 0;
	border-bottom: 2px solid #708090;
	font-size: 16px;
	padding: 10px 0;
	font-family: 'Roboto Mono', monospace;
}

textarea {
	/* border: 2px solid black; */
	margin-top: 15px;
}


label {
	padding-top: 10px;
	color: #56045d;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
}

input[type=text],
input[type=email] {
	padding-left: 10px;
}

input[type=submit] {
	background-color: #56045d;
	border-radius: 2px;
	border: 0;
	box-shadow: rgba(1, 60, 136, .5) 0 -1px 3px 0 inset, rgba(0, 44, 97, .1) 0 3px 6px 0;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	display: inherit;
	font-family: "Space Grotesk", -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	margin: 0;
	padding: 16px 20px;
	position: relative;
	text-align: center;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	vertical-align: baseline;
	transition: all .2s cubic-bezier(.22, .61, .36, 1);
	margin-top: 30px;
}

input[type=submit]:hover {
	background-color: #56045d;
	transform: translateY(-2px);
}



/* Contact Trish Styles */

.trish-pic {
	display: inline;
	position: relative;
	background-image: url(bkg-trish.jpg);
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 25vw;
	height: 60vh;
	/* border: 1px solid darkgoldenrod; */

}


.footer-div {
	position: relative;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2.5rem;
	text-align: center;
	padding-top: 2vh;
	vertical-align: baseline;
}

#trish {
	text-decoration: none;
	color: #56045d;

}

#trish:hover {
	color: rgb(137, 137, 237);

}