.navbar{
	background-color: black;
}
.post-wrapper{
	background-color: #EEEEEE;
}
.post-container{
	background-color: white;
	margin: 0 auto;
	padding: 130px;
	box-shadow: 5px 0px 8px gainsboro;
}
.post-container h1{
	font-size: 40px;
	font-weight: bold;
	margin: 0;
	padding: 0;
}
.post-container span{
	color: #7C7C7C;
	font-size: 18px;
}
.post-container img{
	display: block;
	margin: 20px auto;
	width: 90%;
	max-width: 640px;
}
.post-container .post-content{
	width: 80%;
	margin: 0 auto;
}
.writer{
	display: flex;
	align-items: center;
}
.writer .writer-avatar{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: inline-block;
}
.writer .writer-name{
	display: inline-block;
	margin-left: 6px;
	font-size: 18px;
	color: #7C7C7C;
}
@media(max-width: 992px){
	.post-container{
		padding: 120px 10px 50px 10px;
	}
	.post-container h1{
		font-size: 28px;
	}
	.post-container span{
		font-size: 16px;
	}
	.post-container .post-content{
		width: 90%;
		margin: 0 auto;
	}
	.post-container img{
		width: 100%;
	}
}