@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400');

/* CUSTOM RESET */

/* properties that are not inherited*/
* {
	border:0px;
	margin:0px;
	padding:0px;
	box-sizing:border-box;
}

html {
	/*properties that are inherited, might as well set them in the root element*/
	color:#250300;
	/* we don't want inline elements to inherit parent's font size*/
	font-size:1rem;
	font-family: "Source Sans Pro", sans-serif;
	background-image:url("images/bg-texture.png");
	background-color:#d3c7c4;
}

h1,
h2 {
	font-weight:300;
	text-align:center;
	margin:2rem 0rem;
}

h1 {
	font-size:4rem;
}

h2 {
	font-size:2rem;
}

h3 {
	font-size:1.3rem;
}

p {
	margin:1rem 0rem;
	line-height:1.7em;
}

ol,
ul {
	margin-left:3rem
}

li {
	margin:1rem 0rem;
}

nav {
	position:fixed;
	z-index: 1;
	top:0px;
	left:0px;
	display:flex;
	width:200px;
}

a {
	text-decoration:none;
}

a:hover {
	color:#c90005;
}

video,
img {
	width:100%;
}

/* BEM COMPONENTS */

.nav {
	width:100%;
	padding:1rem;
	padding-left:1.5rem;
}

.nav[open] {
	border-right:1px solid #c90005;
}

.nav-link {
	display:block;
	width:100%;
	margin-left:1rem;
	padding:0.5rem;
	padding-left:1rem;
	border-left:5px solid transparent;
}

.nav-active {
	border-left:5px solid #c90005;
	/*background-color:#eee;*/
}

.menu {
	max-width:800px;
	margin:2rem auto;
}

.menu-info {
	padding:1rem;
	padding-top:0.5rem;
	text-align:center;
}

.menu-image {
	border-radius:0.5rem;
}

.logo {
	width:50px;
	margin:10px;
}

.episode {
	width:800px;
	margin:0px auto;
	display:flex;
	margin-bottom:2rem;
	border:2px solid transparent;
	border-radius:0.5rem;
	overflow:hidden;
}

.episode:hover {
	border:2px solid #c90005;
}

.episode-img {
	width:50%;
	height:225px;
}

.episode-info {
	width:50%;
	padding:1rem;
	background-color:#cab9ba;
}

.page {
	width:40rem;
	margin: 4rem 0rem;
	margin-left: 18rem;
}

.indent {
	margin-left:2rem;
}

.indent2 {
	margin-left:1rem;
}

.donate {
	width:120px;
	text-align:center;
	padding:1rem;
	display:block;
	cursor:pointer;
	background-color:#c191a0;
}

.donate:hover {
	color:#c90005;
	border-bottom:2px solid #c90005;
}

@media (max-width:1230px) {
	nav {
		background-color:#dbd2cf;
	}
}

@media (max-width:950px) {
	.page {
		width:30rem;
	}
}

@media (max-width:800px) {
	.page {
		margin:4rem auto;
		width:85%;
	}
	.menu,
	.episode {
		width:50%;
		margin-bottom:2rem;
		flex-direction:column;
	}
	.episode-img,
	.episode-info {
		width:100%;
		height:auto;
	}
}

@media (max-width:600px) {
	.menu,
	.episode {
		width:90%;
	}
}

