.personContainer {
	position: relative;
	height: 100%;
}

.person {
	box-sizing: border-box;
	padding: 10px;
	color: black;
	font-size: 0.7rem;
	overflow: hidden;
	white-space: normal;
	text-align: center;
}

.person > div {
	margin: 30px auto;
}

.person .profilePicture {
	width: 200px;
	height: 200px;
	border-radius: 100px;
	background-size: cover;
	background-repeat: no-repeat;
}

.person .nickname {
	font-size: 1.1rem;
	margin-bottom: 0;
}

.person .fullname {
	font-size: 0.7rem;
	margin-top: 0;
}

.person .relation {
	font-size: 1.0em;
}

.person .phoneNumber {
	font-size: 0.85rem;
}

.person .text{
	padding: 0 12px;
	text-align: left;
}