body {
	background-color:#ebede9;
	margin:0;
	font-family:"MS Gothic", "Courier New", monospace;
}
#reader {
	position:fixed;
	bottom:0;
	right:20px;
	padding:0 0 0 20px;
	border-radius:20px 0 0 0;
	text-align:right;
	transition:background-color 0.2s ease-out;
}
#reader:hover {
	background-color:#ebede9;
}
#container {
	width:100vw;
	height:100vh;
	
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
}
#bobber {
	display:none;
	position:fixed;
	top: calc(50% - 210px);
	left: calc(50% - 160px);
}
#text {
	font-size:1.22em;
	max-width:400px;
	text-align:center;
	
	/*Experimental styling.*/
	padding-left:18px;
	padding-right:18px;
	border-radius:20px;
	box-shadow:0 2px 3px grey inset;
}
#reader a {
	text-decoration:none;
	font-weight:bold;
}
#reader a:hover {
	color:#F00;
}
button {
	width:50%;
	margin:4px;
	font-family:"MS Gothic", "Courier New", monospace;
	font-weight:bold;
	padding:10px;
}
.highlight, .fishvalue {
	color: #04d;
	font-weight: bold;
	transition: all 1s ease-in;
}
.highlight:hover {
	text-shadow: 0 0 10px #04d;
}
/*exlusively fishventory styles*/
@keyframes fish_enter {
	100% {
		opacity:1;
		transform:none;
	}
}
@keyframes quality_enter {
	100% {
		opacity:1;
	}
}
#quality {
	opacity:0;
	position:fixed;
	bottom:-50px;
	transform:rotateZ(45deg);
	animation:quality_enter 2s ease-out forwards;
	animation-delay:3s;
}

#inventoryContainer {	
	display:flex;
	justify-content:center;
	flex-direction:row;
}
#inventoryLimiter {
	display:grid;
	width:40%;
	min-width:500px;
	max-width:1000px;
	margin-bottom:150px;
	justify-content: space-evenly;
}
#inventoryBanner {
	width:100%;
	text-align:center;
	
	display:flex;
	justify-content:center;
}
#bannerHeader {
	z-index:99;
	width:30%;
	min-width:500px;
	max-width:1000px;
	padding:10px 20px 10px 20px;
	background-color:#04d;
	background-image:url("img/ditherblue.png");
	background-repeat: repeat-y;
	box-shadow: 0 0 10px #02a inset;
	color:#EEE;
	border-radius:10px;
	margin:5px;
}
#bannerHeader img {
	display:inline-block;
	padding-top:1px;
	margin-left:5px;
}
.fishvalue {
	color:#FF0;
}
.fishy {
	width:500px;
	margin:2px;

	background-color:#a08662;
	background-image:url("img/ditherbrown.png");
	background-repeat:repeat-y;
	box-shadow:0 2px 3px #796755 inset;
	border-radius:10px;
	text-align:center;
	padding:10px;

	opacity:0;
	transform-origin:top center;
	transform:rotateX(-90deg);
	animation:fish_enter 0.4s cubic-bezier(.62,.12,.79,.96) forwards;

	display: flex;
	flex-direction: column;
}
.fishy .row {
	display:flex;
	flex-direction: row;

	justify-content:start;

	margin-top: 8px;
}
.fishy .row:first-of-type {
	display:flex;
	flex-direction: row;

	justify-content:start;

	margin-top: 0;
}
.fishy .main {
	min-height:100px;
	max-height:100px;
}

.fishy:first-of-type {
	display:none;
}
.fishyimage-container {
	display: grid;
}
.fishyimage-container .fishyimage {
	grid-row: 1;
	grid-column: 1;

	width:128px;
	height:64px;
	padding:18px 2px 18px 2px;
	margin-right:5px;
}
.fishyimage-container .fishybackground {
	grid-row: 1;
	grid-column: 1;

	width:128px;
	height:64px;
	padding:18px 2px 18px 2px;
	margin-right:5px;
	background-color:#04d;
	background-image:url("img/ditherblue_down.png");
	background-repeat:repeat-x;
	background-position:0 68px;
	border-radius:20px;
	box-shadow: 0 5px 5px #02a inset;
}
.aboutfish, .fishvaluebox {
	width:25%;
	box-shadow: 0 1px 1px grey inset;
	background-color:#fee;
	background-image:url("img/papermargin.png");
	background-repeat:repeat-y;
	padding:5px;
	padding-left:15px;
	border-radius:5px;
}
.aboutfish {
	line-height: 16px;

	margin-right:5px;
	width:40%;

	display: flex;
	flex-direction: column;
}
.aboutfish * {
	margin-top: 2px;
}
.aboutfish hr {
	opacity:0;
	margin-top:2px;
}
.fishvaluebox button {
	width:90%;	
}
.fish-more-stats {
	display: flex;
	flex-direction: row;

	min-width: 100%;
}

.fish-more-stats .stat {
	box-shadow: 0 1px 1px grey inset;
	background-color:#fee;
	background-image:url("img/papermargin.png");
	background-repeat:repeat-y;
	padding:5px;
	padding-left:15px;
	border-radius:5px;

	margin-left: 8px;

	flex-grow: 1;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.fish-more-stats .stat:first-of-type {
	margin-left: 0;
}
/*Highlight Qualities*/
div b:first-of-type{
	background-color:#111;
	padding:1.5px 10px 1.5px 10px;
	border-radius:50px;
}
@keyframes pure_platinum_animation {
	0% {
		color:#CFF;
	}
	100% {
		color:#8FF;
	}
}
@keyframes divine_animation {
	0% {
		color:#FFF;
	}
	100% {
		color:#FF0;
	}
}
@keyframes chocolate_animation {
	0% {
		color:#FF0;
	}
	100% {
		color:#F00;
	}
}

.Normal {color:#FFF;} /*Solid White*/
.Uncommon {color:#4d6;} /*green*/
.Rare {color:#48e;} /*blue*/
.Legendary {color:#64b;} /*purple*/
.Mythical {color:#D65;}/*pale orange*/
.Immortal {color:#D60;}/*pale orange*/
.Puregold {color:#FF0;}/*bright yellow*/
.Pureplatinum {
	animation-name: pure_platinum_animation;
	animation-duration: 1s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
	animation-timing-function:linear;
}
.Divine {
	animation-name: divine_animation;
	animation-duration: 0.5s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
	animation-timing-function:linear;
}
.Chocolate {
	animation-name: chocolate_animation;
	animation-duration: 0.15s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
	animation-timing-function:linear;
}
img.Puregold {
	filter: sepia(1) contrast(1.25) saturate(2.25) brightness(1.2);
}
img.Pureplatinum {
	filter: grayscale(1) brightness(1.1) contrast(1.25)
}
img.Divine {
	filter: contrast(1.5) drop-shadow(0px 0px 6px yellow);
}
/*img.Chocolate {
	filter: grayscale(1) sepia(1) brightness(0.4) saturate(3) contrast(2) hue-rotate(346deg);
}*/
.personalitytype {
	font-weight: bold;
	color: #33a;
}
.bold {
	font-weight: bold;
}