body {
	background-image: url("/img/bg/main.png");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
}

.description {
	display: flex;
	overflow: hidden;
	padding: .75rem 1rem .75rem 1rem;
	text-align: center;
	color: #FFFFFF;
	background: linear-gradient(to bottom, #0000007F, #0000007F, #0000007F, #0000007F, #00000000);
	text-shadow: 0 0 1rem #FFFFFF;
}

.description img {
	float: right;
	align-self: center;
	width: 15rem;
	margin: 1rem 1rem 0 0;
}

.pins {
	display: flex;
}

.pins h2 {
	display: flex;
	align-items: center;
	margin: 1rem;
	text-align: center;
	color: #FFFFFF;
	background: linear-gradient(to left, #0000007F, #00000000);
}

.vline {
	width: .5rem;
	margin: 1rem;
	border-radius: .5rem;
	background-color: #FFFFFF;
}

.pins .posts {
	display: inline-block;
	overflow-x: auto;
	white-space: nowrap;
}

.pins .post {
	display: inline-block;
	white-space: normal;
}

.posts {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.post {
	display: flex;
	overflow: hidden;
	flex-direction: column;
	width: 20rem;
	margin: 1rem;
	transition: .5s;
	border-radius: 1.5rem;
	background-color: #FFFFFF;
	box-shadow: 0 .5rem 1rem #0000007F;
}

.post:hover {
	transform: translateY(-.5rem);
	box-shadow: 0 2rem 4rem #0000007F;
}

.post img {
	width: 100%;
	transition: .5s;
}

.post img:hover {
	transform: scale(1.1);
}

.post h3,
.post p {
	margin: 1rem;
}

.post p {
	color: #3F3F3F;
}

.post hr {
	border: #007F00 2px solid;
}

.post .footer {
	display: block;
	color: #007F00;
}

.post .btn {
	font-weight: bold;
	display: inline-block;
	padding: .5rem .5rem .5rem 1rem;
	transition: all .3s;
	text-decoration: none;
	color: #BFFFBF;
	border-radius: 0 0 0 2rem;
	background-color: #007F00;
}

.post .btn:hover {
	background-color: #005F00;
}

.post .btn:focus {
	background-color: #003F00;
}

.post .info {
	display: inline-block;
	padding: .5rem;
	text-align: center;
}

.pages {
	margin: 1rem;
	text-align: center;
	direction: ltr;
}

.pages a {
	font-weight: bold;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	margin: .25rem;
	padding: .5rem;
	transition: all .3s;
	text-decoration: none;
	color: #FFFF00;
	border-radius: 50%;
	box-shadow: 0 0 .5rem #000000;
}

.pages a:hover {
	color: #000000;
	background-color: #FFFF00;
}

.pages .page {
	background: radial-gradient(circle, #00BF00, #003F00);
}

@media only screen and (max-width: 768px) {
	.description {
		display: block;
		text-align: center;
	}

	.description img {
		float: none;
	}
}