body {
	font-family: Calibri, sans-serif;
	background: url("images/bkg.png") no-repeat center fixed;
}

#header {
	margin: 40px 10%;
	background-color: white;
	padding: 30px;
	line-height: 150%;
	border-radius: 20px;
	min-width: 223px;
}

#scale { 
	background: linear-gradient(to right, #98fb98 0%, #87ceeb 33%, #ffc0cb 66%, #ffdead 100%);
	width: 60%;
	margin: auto;
	height: 30px;
	display: flex;
	justify-content: space-between;
	padding: 5px 10px;
	min-width: 200px;
}

.scalelabel {
	vertical-align: center;
	font-weight: bold;
	font-family: Century Gothic, Tahoma, sans-serif;
}

#content {
	margin: 20px 10%;
	display: flex;
	position: relative;
	flex-flow: row wrap;
	justify-content: space-around;
}

.episode {
	padding: 15px;
	position: relative;
	border-radius: 20px;
	margin: 15px;
	width: 360px;
	display: flex;
	flex-direction: column;
}

@media only screen and (max-width: 800px) {
	/*for mobile phones*/
	.episode {
		width: 250px;
		margin: 5px 0;
	}
}

.essential { background-color: rgba(152, 251, 152, 0.7); }
.worth { background-color: rgba(135, 206, 235, 0.7); }
.maybe { background-color: rgba(255, 192, 203, 0.7); }
.no { background-color: rgba(255, 222, 173, 0.7); }
.unknown { background-color: rgba(211, 211, 211, 0.7); }

.title {
	font-family: "Century Gothic", Tahoma, sans-serif;
	font-size: 20pt;
	font-weight: bold;
	letter-spacing: 3px;
	position: relative;
	text-outline: 2 white;
	width: 100%;
}

.num {
	position: relative;
	width: 100%;
	letter-spacing: 4px;
	font-style: italic;
	font-family: Century Gothic, Tahoma, sans-serif;
	font-size: 10pt;
}

.desc {
	background-color: white;
	flex-grow: 1;
	margin: 5px;
	border-radius: 5px;
	padding: 10px;
}

.stats {
	background-color: white;
	border: 5px solid white;
	margin: 5px;
	border-collapse: collapse;
	width: 350px;
}

@media only screen and (max-width: 800px) {
	/*for mobile phones*/
	.stats {
		width: calc(100% - 10px);
	}
}

tr {
	border-bottom: 1px solid pink;
}

th {
	text-align: right;
	font-weight: normal;
	letter-spacing: 2px;
	font-variant-ligatures: none;
	padding-left: 5px;
	width: 130px;
}

.foo {
	vertical-align: center;
	display: inline;
}

td {
	padding: 5px;
	vertical-align: center;
}

.pip {
	max-height: 30px;
	max-width: 30px;
	margin-left: 5px;
}

@media only screen and (max-width: 800px) {
	/*for mobile phones*/
	.pip {
		max-height: 15px;
		max-width: 15px;
		margin-left: 2px;
	}
}

.charicon {
	width: 50px;
	height: 50px;
	background-color: white;
	padding: 5px;
	border-radius: 10px;
	margin: 5px;
}

@media only screen and (max-width: 800px) {
	/*for mobile phones*/
	.charicon {
		height: 30px;
		width: 30px;
	}
}

h1 {
	font-size: 12pt;
	font-family: Century Gothic, Tahoma, sans-serif;
	margin-bottom: 0;
}

.creditswrapper {
	text-align: right;
	letter-spacing: 2px;
	font-variant-ligatures: none;
}

.credits {
	position: relative;
	width: 100%;
	letter-spacing: 4px;
	font-style: italic;
	font-weight: normal;
	font-family: Century Gothic, Tahoma, sans-serif;
	font-size: 8pt;
}

#footer {
	text-align: center;
	font-size: 8pt;
	margin-top: 10px;
}