@charset "utf-8";

#content {
	text-align: center;
	overflow: hidden;
	max-width: 1200px;
	margin: 0 auto;
}

#content > p {
	margin: 0 40px 5em 40px;
}

#posts {
	display: flex;
	justify-content: space-around;
	margin: 0 auto;
}

#postsLeft, #postsRight {
	display: flex;
	flex-flow: column;
}

#postsRight {
	margin-top: 250px;
}

#postsCenter {
	display: none;
}

.post {
	background-color: #FFF;
	padding: 10px;
	margin-bottom: 100px;
	width: 400px;
	position: relative;
	border-radius: 4px 4px 10px 10px;
}

.post p {
	color: #4F4F58;
	color: #86868B; 
	text-align: left;
	margin: 15px 15px 5px 10px;
}

.post > a > img {
	width: 100%;
}

h1 {
	margin: 1em auto 0.5em auto;
}

@media (max-width: 1000px) {
   
   #postsLeft, #postsRight {
	   display: none;
	}
	
	#postsCenter {
	   display: block;
	}
   
}

@media (max-width: 440px) {
	
	#posts {
     display: inherit;
   }
	
	.post {
	  width: calc(100% - 40px);
	  margin: 0 10px 100px 10px;
	}
	
	h1 {
	  font-size: 3em;
	}
}