#name-tag {
	position: relative;
	width: 300px;
	border-radius: 16px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	text-align: center;
	margin-bottom: 64px;
	background-color: #fff;
}

#name-tag-top {
	background-color: #ff8cb2;
	color: white;
	padding: 8px 0px;
	text-align: center;
	border-radius: 16px 16px 0px 0px;
	font-family: "Arial";
}

#name-tag-top p {
	margin: 0px;
}

#name-tag-name {
	padding-top: 24px;
	font-size: 2em;
	font-weight: 400;
	color: var(--grey);
}

#name-tag-pronouns {
	padding-bottom: 24px;
	font-size: 1.2em;
	font-weight: 400;
	color: var(--light-grey);
}

#email {
	position: absolute;
	bottom: -8px;
	left: 50%;
	padding: 0.75em 2em 0.75em 2em;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translate(-50%, 100%);
	white-space: nowrap;
}

#email img {
	position: absolute;
	width: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

#email div {
	position: relative;
	color: var(--light-grey)
}