@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400;700&family=Rubik:wght@300;400;500;700;900&family=Sanchez:ital@0;1&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
*{
    --sansserif: 'Rubik';
    --serif: 'Sanchez';
    --maingreen: #22995D;
    --landred: #992F22;
    --leafgreen: #094D2B;
	 --fruitpurple: #622066;
    --seedyellow: #E58D1C;

}


.team-area{
	width: 100%;
	margin: auto;
}
.team-area li{
	position: relative;
	width: 80%;
	max-height: 90%;
	margin: 2rem auto;
}

.team-member{
	top: 0px;
	left: 0px;
	background: whitesmoke;
	text-align: center;
	padding: 1.5rem;
	height: 100%;
	width: 100%;
	 box-shadow: -2px 15px 25px -8px rgba(0,0,0,0.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.front{
	position:relative;
}
.team-pic-container{
	height: 300px;
	width: 300px;
	margin-top: 2rem;
	position: relative;
}
.team-pic{
  display: block;
	height: 300px;
	width: 300px;
	border-radius: 50%;
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(88%);
	position:relative;
}


.back{
	position: absolute;
	opacity: 0;
	transition: opacity 1s ease-out;
	-webkit-transition: opacity 1s ease-out;
	-moz-transition: opacity 1s ease-out
}

.back:hover{	
	opacity: 0.95;
}
.info-team-container{
	margin-top: 2.5rem;
}
.info-team-container p{
	margin-block-start: 0em;
  margin-block-end: 0em;
	margin-bottom: 10px;
	line-height: 1.5;
}
.team-name{
	font-weight: 600;
	font-size: 2em;
	color: var(--fruitpurple);
	margin-block-end: 0px;
}
.team-position{
	font-weight: 400;
	font-size: 1.75em;
    color: var(--fruitpurple);
	margin-bottom: 2%;
}
.team-pronouns{
	font-size: 1rem;
	font-style: italic;
    color: var(--fruitpurple);
}
.back .info-team-container{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	font-weight: 400;
	width: 100%;
}
.dashicons-before:before{
	display: inline-block;
	vertical-align: middle;
	color: var(--fruitpurple);
	margin-right: 1rem;
}
.bio-container{
	height: 70%;
	margin-top: 2rem;
	font-size: 1.25rem;
	font-weight: 400;
	text-align: justify;
}
.bio-container p{
	margin-bottom: 0px;
	margin-block-start: 0em;
  margin-block-end: 0em;
	line-height: 1.5;	
}
.team-bio{
	padding: 1rem 4rem;
}

