.profile {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}

.cover-photo {
	height: 200px;
	background-image: url(https://www.itl.cat/pngfile/big/52-520094_flag-of-bangladesh-4k-stone-texture-waves-texture.jpg);
	background-size: cover;
	border: 5px solid black;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.profile-picture {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background-image: url(https://telegra.ph/file/0e44b1e99118c0f2bb15a.jpg);
	background-size: cover;
	margin-top: -75px;
	margin-left: 25px;
	position: relative;
	border: 5px solid white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.name {
	margin-top: 20px;
	font-size: 36px;
	text-align: center;
}

.location {
	margin-top: -10px;
	font-size: 24px;
	color: gray;
	text-align: center;
}

.about {
	margin-top: 30px;
	border-top: 1px solid gray;
	padding-top: 20px;
}

.about h2 {
	font-size: 24px;
	margin-bottom: 10px;
}

.about p {
	font-size: 18px;
	line-height: 1.5;
}

.friends {
	margin-top: 30px;
	border-top: 1px solid gray;
	padding-top: 20px;
}

.friends h2 {
	font-size: 24px;
	margin-bottom: 10px;
	text-align: center;
}

.friends ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.friends li {
	display: inline-block;
	margin: 10px;
}

.friends li img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid gray;
  }
