colorInformation{
	background-color: #FF9C0D;	/* fire */
	background-color: #F4F4F4;	/* background and text */
	background-color: #17242A;	/* background and text */
	background-color: #85CBBF;	/* alternate */
	background-color: #47896D;	/* border */
	/* credit to colormind.io for this configuration*/
}
/****************   GAME LIST  ***************************************************/

#gamelist{
	display: flex;
	flex-direction: row;
	justify-content: center;
}
#gamelist li{
	margin: 5px 10px;
	font-size: 1.5rem;
	background-color: #FF9C0D;
	padding: 5px 20px;
	border:#85CBBF solid 2px;
	border-radius: 5px;
}
#gamelist li:hover{
	color:#47896D;
}
#gamelist p{
	max-width:800px;
	margin: 25px auto;
  font-size: 1.4rem;
	line-height: 2rem;
}

/****************   GAMES   ***************************************************/
#game{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	background-color: #F4F4F4;
	width: 500px;
	height: 100px;
	border: 3px solid #85CBBF;
	border-radius: 25px;
	margin: 50px auto;
	padding: 20px 10px;
	text-align: center;
	box-sizing: border-box;
	transition: width 1s ease-in-out, height 1s ease-in-out;
	overflow: hidden;
}
#game p{
	/* margin: 20px 5px 0; */
	line-height: 2rem;
	font-size: 1.8rem;
	color: #17242A;
	text-indent: 25px;
	text-align: left;
}
.pbutton{
	width: 50%;
	padding: 5px 10px;
	border: 1px solid #85CBBF;
	border-radius: 5px;
}
#swordDiv, #eyeDiv{
	height:600px;
	width:280px;
	/* border:1px solid black; */
}
#sword{
	display: inline-block;
	position: relative;
	rotate: 270deg;
}
#eye{
	display: inline-block;
	position: relative;
	left: 100px;
}
#game .hidden{
	display: none;
}
#game .redText{
	color: red;
}
#game ul{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#game li{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-end;
	justify-content: left;
	margin: 2px 2px;
	font-size: 1.5rem;
	background-color: #F4F4F4;
	padding: 2px 5px;
	border: #85CBBF solid 2px;
	border-radius: 5px;
	min-width: 400px;
}
#game li input{
	margin: 0 10px 0 0;
}
#game li p{
	margin: 0 0;
	line-height: 1.8rem;
	font-size: 1.8rem;
	color: #17242A;
}
