  
.bubble {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all ease 0.3s;
	padding-left: 5%;
	padding-right: 5%;
}
  
.bubble img {
	border-radius: 50%;
	object-fit: cover;
	transition: all ease 0.3s;
	width: 100%;
	max-width: 200px;
}
  
.name {
	margin-top: 0.5rem;
	font-family: var(--font-0);
	margin-bottom: 0;
	font-size: 1.4rem;
}
  
.title, .role {
	font-size: 15px;
	margin: 0;
	color: grey;
}