#content {
	width: 500px;
	height: 100vh;
	background: #f4f4f4;
	margin: 0 auto;
	position: relative;
}

#navbar {
	height: 60px;
	background: #ffffff;
}

.navbar-item {
	float: right;
	line-height: 60px;
	opacity: 0.5;
}

#header {
	position: relative;
	top: 0px;
	width: 100%;
	height: 100px;
	padding: 20px 0px;
}

#profile-pic {
	display: inline-block;
	height: 80px;
	width: 80px;
	margin: 20px 60px;
	
}

#information {
	display: inline-block;
	position: absolute;
	height: 80px;
	left: 170px;
	margin-top: 16px;
	padding-left: 20px;
	color: rgba(0,0,0, .7);
	
}

#username {
	font-size: 24px;
	display: inline-block;
	margin-top: 10px;
}

#follow-button {
	background: #007bb5;
	display: inline-block;
	margin-top: 10px;
	margin-left: 10px;
	color: white;
}

#about {
	font-size: 12px;
	margin-top: 8px;
	color: rgba(0,0,0, .5);
	line-height: 1.5em;
	width: 270px;
}

.row {
	width: 100%;
	height: 120px;
	text-align: center;
}

.item {
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.item, #profile-pic {
	position: relative;
}

#design {
	text-decoration: underline;
	color: black;
	opacity: 0.6;
	transition: 0.2s;
	text-align: center;
	position: fixed;
	right: 40px;
	bottom: 30px;
}

#design:hover {
	opacity: 1;
	text-decoration: underline;
}

img {
	height: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	
}

html, body {
	background: #fafafa;
	font-family: 'Roboto', sans-serif;
	
}