html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

body {
	background-image: url(forest-silhouette-watermark.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	background-attachment: fixed;
}

.content {
	margin: 0 auto;
	padding: 20px 10px 50px 10px;
	text-align: center;
}

.logo {
	display: block;
	width: 350px;
	max-width: 85vw;
	margin: 0 auto;
	height: auto;
}

.cta {
	margin-top: 20px;
	font-family: 'Acme', sans-serif;
	font-size: 24px;
}

a.button {
	margin-top: 10px;
	font-family: 'Acme', sans-serif;
	font-size: 18px;
	display: inline-block;
	padding: 5px 25px;
	text-decoration: none;
	background: #111;
	color: #fff;
	border-radius: 18px;
	transition: all 500ms;
}

a.button:hover {
	transform: scale(1.1);
}

.donate {
	font-size: 24px;
	border: 3px solid #fff;
	border-radius: 21px;
	box-shadow: 5px 5px 21px rgba(0,0,0,0.3);
}

.donate:hover {
	background: #333;
}

.tagline {
	font-family: 'Acme', sans-serif;
	font-size: 24px;
	color: #fff;
	position: fixed;
	bottom: 0px;
	right: 0px;
	padding: 10px;
	width: 100%;
	background: #a3a7a9;
	text-align: right;
	text-transform: uppercase;
}

.videos-timeline {
	margin: 1rem auto;
	max-width: 560px;
	text-align: left;
}

.videos-timeline .videos-head {
	font-family: 'Acme', sans-serif;
	font-size: 18px;
}

.videos-timeline .videos-head .big {
	font-size: 32px;
	margin-right: 6px;
}

.videos-timeline iframe {
	max-width: 100%;
}

.bookshelf {
	margin: 1rem auto;
	max-width: 560px;
	text-align: left;
}

.bookshelf .bookshelf-head {
	font-family: 'Acme', sans-serif;
	font-size: 18px;
}

.bookshelf .bookshelf-head .big {
	font-size: 32px;
	margin-right: 6px;
}

.bookshelf img.cover {
	height: 400px;
	width: auto;
	margin-right: 2rem;
}

.bookshelf table {
	border-collapse: collapse;
}

.bookshelf table td {
	text-align: center;
}

.twitter-timeline {
	margin: 1rem auto;
	max-width: 560px;
	text-align: left;
}

.twitter-timeline .twitter-head {
	font-family: 'Acme', sans-serif;
	font-size: 18px;
}

.twitter-timeline .twitter-head .big {
	font-size: 32px;
	margin-right: 6px;
}

.twitter-timeline .twitter-head a {
	color: #333;
	text-decoration: none;
}

.twitter-timeline ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.twitter-timeline ul li {
	margin: 10px 0 0 0;
}

.twitter-timeline .tweet a {
	color: inherit;
	text-decoration: none;
	display: flex;
	align-items: center;
}

.twitter-timeline .tweet .avatar {
	width: 28px;
	margin-right: 10px;
}

.twitter-timeline .tweet .text {
	font-family: 'Caveat', sans-serif;
	font-size: 28px;
	line-height: 1.1;
	transition: all 500ms;
}

.twitter-timeline .tweet a:hover .text {
	color: #006;
}

.twitter-timeline .tweet .avatar img {
	width: 32px;
	height: auto;
	border-radius: 50%;
	opacity: 0.6;
	transition: all 500ms;
}

.twitter-timeline .tweet a:hover .avatar img {
	opacity: 1;
	transform: scale(1.25);
	box-shadow: 0 0 9px rgba(0,0,0,0.4);
}

