body{
	background-color: grey;
}
*{
	box-sizing: border-box;
}
.header{
	margin-top: 50px;
	padding: 25px;
	text-align: center;
	font-size: 30px;
	font-weight: 900;
	background-color: #2b2b2b;
	color: #ff9626;
	box-shadow: 0px 0px 9px black;
}
.container1{
	padding: 20px;
}
.profileShell{
	padding: 30px;
	box-shadow: 0px 0px 20px black;
	height: 400px;
	margin-top: 50px;
}
.profile{
	width: 25%;
	border-radius: 50%;
	overflow: hidden;

}
.profile>img{
	width: 100%;
}
.innerShell>div{
	float: left;
}
.media>img{
	width: 35px;
	height: 35px;
	margin-right: 60px;
}
div>img{
	float: left
}
.media:hover{
	transform: scale(1.02);
}
.media{
	transition-duration: 0.3s, 0.3s;
    transition-timing-function: ease, ease;
    
}