
.content{
	background-color: hsl(0, 0%, 93%);
}

.message{
	font-family: 'Karla', sans-serif;
	margin: 20px;
	/*display: inline;*/
	vertical-align: top;
	font-size: 16px;
	line-height: 20px;
}

.date{
	font-family: Verdana;
	font-size: 11px;
	color: hsl(0,0%,50%);
	position: absolute;
	right: 10px;
	bottom: 10px;
}

.image_caption{
	display: block;
	/*width: calc(100%-240px);*/
	/*flex: 1;*/
	/*position: absolute;
	right: 20px;*/
	max-height: 200px;
	overflow: auto;
}

.item .image{
	display: block;
	vertical-align: middle;
	width: 100%;
	background-color: hsl(0, 0%, 90%);
	overflow: hidden;
	max-height: 40px;
	opacity: 0;
	
	transition-timing-function: ease;
	transition: max-height 1s, opacity 1s;
	-webkit-transition: max-height 1s, opacity 1s;
}

.item:hover .image{
	max-height: 1000px;
	
	opacity: 1;
	
	transition-timing-function: ease;
	transition: max-height 1s, opacity 1s;
	-webkit-transition: max-height 1s, opacity 1s;
}

.blue{
	border: 1px solid hsl(195,70%,70%);
	background-color: hsl(0,0%,90%);
}

.item:hover .blue{
	border: 0px solid hsl(195,50%,80%);
}

.image img{
	display: block;
	max-width: 100%;
	margin: 0px auto;
}

.image + div{
	opacity: 1;
	font-family: 'Julius Sans One', sans-serif;
	height: 0;
	text-align: center;
	position: relative;
	top: -20px;
	color: hsl(200,30%,20%);
	
	transition: opacity 1s;
	-webkit-transition: opacity 1s;
}

.image + div::after{
	content: 'Hover over to view image';
}

.item:hover .image + div{
	opacity: 0;
	
	transition: opacity 1s;
	-webkit-transition: opacity 1s;
}

.youtube_video{
	padding: 0;
	width: 100%;
	margin: 0px auto 20px auto;
}

.youtube_video iframe{
	width: 100%;
	height: 540px;
	
	border: 1px solid hsl(195,70%,70%);
}

.load-old-posts{
	position:absolute;
	bottom: 0px;
	height: 20px;
	padding: 20px 0px;
	width: 100%;
	background-color: hsl(0,0%,95%);
	font-size: 25px;
	color: hsl(200,30%,20%);
	font-weight: bold;
	text-align: center;
	font-family: 'Julius Sans One', sans-serif;
	border: 1px solid hsl(195,70%,70%);
	z-index: 0;
	cursor: pointer;
}

.load-old-posts:hover{
	background-color: hsl(0,0%,90%);
	border: 1px solid hsl(195,0%,70%);
}

.load-old-posts img{
	margin: 0 auto;
}

.flex-contain-comments{
	
}

@media all and (max-width: 800px) {
	.youtube_video iframe{
		height: 400px;
	}
}

@media all and (max-width: 670px) {
	.youtube_video iframe{
		height: 380px;
	}
	
	.image + div::after{
		content: 'tap to view image';
	}
}

@media all and (max-width: 550px) {
	.youtube_video iframe{
		height: 320px;
	}
}
@media all and (max-width: 500px) {
	.youtube_video iframe{
		height: 280px;
	}
}