/*
    Lawrence County Line Episode page
    Style sheet

*/

body
{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-size: 100%;
	color: #4d4d4d;
	background-color: #dbdbdb;
}

div, img
{
	box-sizing: border-box;
}

h1
{
	font-size: 4em;
	margin-block-start: 0em;
	margin-block-end: 0em;
}

h2
{
	font-size: 2em;
	margin-block-start: 0em;
	margin-block-end: 0em;
}

h3
{
	display: inline;
	font-size: 1.5em;
	margin-block-start: 0em;
	margin-block-end: 0em;
}

h4
{
	margin-block-start: 0em;
	margin-block-end: 0em;
}

a
{
	color:  #5ea52e;
}

.noStyleLink
{
	text-decoration: none;
}

ul
{
	list-style-type: none;
	font-size: 1.25em;
}

li
{
	text-indent: 0;
	margin-block-start: .5em;
}

.audioPlayer
{
	width: 67%;
	max-width: 700px;
	margin: 8px 0;
}

audio::-webkit-media-controls-enclosure
{
	background-color: #dbdbdb;
}

.header
{
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	position: sticky;
	z-index: 10;
	top: 0;
	width: 100%;
	margin: 0;
	padding: 10px 5%;
	text-align: center;
	background-color: #dbdbdb;
	box-shadow: 0 3px 5px #00000066;
}

			.headerCenter
			{
				order: 2;
				width: 70%;
			}

			.headerLogo
			{
				width: 100%;
				max-height: 85px;
				object-fit: contain;
			}

			.leftContainer
			{
				order: 1;
				width: 15%;
				padding-right: 16px;
				cursor: pointer;
			}

			.rightContainer
			{
				order: 3;
				width: 15%;
				height: 100%;
				padding-left: 16px;
			}
			
			.rightImage, .leftImage
			{
				width: 100%;
				max-height: 85px;
				min-height: 50px;
				object-fit: contain;
			}

.mainPage
{
	display: block;
	width: 92%;
	max-width: 1200px;
	margin: 3% auto;
	padding: 1% 4% 1%;
	background-color: #f8f8f8;
	box-shadow: 0px 0px 8px 4px #61ab30;
}

.mainPageTitle
{
	width: 100%;
	margin: 0;
	font-family: cursive;
	text-align: center;
	color: #000000;
	text-shadow: 3px 3px 8px #61ab30;
}

.mainContent
{
	font-size: 1.25em;
}

.episodeList
{
	padding: 10px 0 0 0;
}

.episode
{
	margin: 0;
}

.episode::after 
{
	content: "";
	clear: both;
	display: table;
}

.episodeTitle
{
	margin: 0 0 0 0;
}

.episodeImage
{
	width: 20%;
	float: left;
	margin: 16px 16px 12px 0;
}

.photoShadow
{
    box-shadow: 4px 4px 6px gray;
}

.navigate
{
	display: flex;
	justify-content: space-between;
	margin: 2em 0 0;
}

.navigatePrevious
{
	text-align: end;
	margin: 0 0 0 16px;
}

.footer
{
	position: relative;
	bottom: 0;
	width: 100%;
	padding: 2%;
	margin: 1% 0 0 0;
	font-size: .875em;
	text-align: center;
	border-top: solid 2px #4d4d4d;
}

@media screen and (max-width: 900px)
{
	
	
	
}

@media screen and (max-width: 700px)
{
	h1
	{
		font-size: 3em;
		margin-block-start: 0em;
		margin-block-end: 0em;
	}

	h2
	{
		font-size: 1.5em;
		margin-block-start: 0em;
		margin-block-end: 0em;
	}
	
	ul
	{
		padding-inline-start: 0;
	}
	
	.audioPlayer
	{
		width: 100%;
	}
	
}

