.connectGrid {
	display: grid;
	overflow: hidden;
	grid-gap: 12px;
	grid-template-rows: auto 1fr;
	grid-template-columns: 140px 1fr;
	grid-template-areas: 
		"photo 		info"
		"connections 	connections"
}

#profPhoto {
	grid-area: photo;
	width: 100px;
	height: 100px;
	border-radius: 60px;
	border-width: 4px;
	border-style: solid;
	border-color: #222;
	background-color: #ddd;
	text-align: center;
}

#profInitials {
	font-size: 55px;
	font-weight: bold;
	color: #555;
	height: 55px;
	line-height: 100px;
	font-family: "Garamond", "Georgia", "Times New Roman", "Serif";
}


#profInfo {
	grid-area: info;
	margin-left: 0px;
	margin-right:24px;

}

.connectionBoxes {
	grid-area: connections;
	display: block;
	margin-top: 0px;
	padding: 0px;
}

.connectionBox {
	display: inline-block;
	margin: 5px;
	color: #333;
	width: 80px;
	height: 120px;
	border-radius: 5px;
	vertical-align: bottom;
}

.connectionBox:hover {
	background-color: #555;
	color: #eee;
}

#connectionLinks {
	width: 80%;
	margin: auto;
}

.conText {
	text-align: center;
	font-size: 12px;
	word-wrap:break-word;
}

.conPhoto {
	margin: 5px 10px 0px 10px;
	width: 50px;
	height: 50px;
	border-radius: 50px;
	border-width: 2px;
	border-style: solid;
	border-color: #222;
	background-color: #ddd;
	text-align: center;
}

#profConInitials {
	font-size: 27px;
	font-weight: bold;
	color: #444;
	height: 27px;
	line-height: 50px;
	font-family: "Garamond", "Georgia", "Times New Roman", "Serif";
}