
.heading{
	font-size: 60px;
	color: white;
}
.heading span{
	font-size: 30px;
	font-style: italic;
}

.profile{
	align-items: center;
	padding: 90px;
}
.profile .profile-img{
	height: 260px;
	width: 260px;
	border-radius: 50%;
	filter: grayscale(100%);
	cursor: pointer;
	transition: 400ms;
}
.profile:hover .profile-img{
	filter: grayscale(0);
}
.user-name{
	margin-top: 1px;
	font-size: 16px;
}
.profile p{
	font-size: 13px;
	margin: 1px;
	text-align: center;
}
@media only screen and (max-width: 1150px){
	.profile{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.profile p{
		text-align: center;
		margin: 20px 60px 80px 60px;
		font-size: 20px
	}
}

@media only screen and (max-width: 900px){
	.heading{
		font-size: 30px;
		color: white;
		text-align: center;
	}
	.heading span{
		font-size: 12px;
	}

	.profile p{
		margin: 1px;
		font-size: 12px;
	}
}

