html {
  font-family: "Open Sans", sans-serif;
  font-size: 120%;
  /*background-color: #e6dcd2;*/
  background-color: SlateGray; /*#fff7e8; /*#feefd0;*/
}

a.others, a.others:visited {
	color: #f0fafa;
}

a.others:hover {
	font-style: underlined;
}
h2 {
	//font-size: 100%;
	margin-bottom: 2px;
}

img.featured_image {
	height: 200px;
	padding: 25px;
}

img.logo {
	height: 128px;
	padding: 11px;
}
div.card {
	text-align: center;
	border: 3px ridge #AAAA;
	background-color: #f0fafa;
	border-radius: 20px;
	padding: 20px 50px 25px 50px;
	display: none;
	width: 40%;
	max-width: 350px;

	
	-webkit-transition: all 1s linear;
	-moz-transition: all 1s linear;
	-o-transition: all 1s linear;
	transition: all 1s linear;
	
}

div.cardCorrect {
	background-color: #DAF7A6;
}
div.cardIncorrect {
	background-color: #f5b7b1;
}
div.cardTimeout {
	background-color: #999;
}

div.left {
	margin-left: auto;
	margin-right: 6%;
	float: left;
	/*padding-right: 5px;*/
}

div.right {
	margin-left: 6%;
	margin-right: auto;
	float: right;
	/*padding-left: 5px;*/
}

span.small {
	font-size: xx-large;
}
span.middle {
	font-size: xxx-large;
}
span.venue {
	font-size: xx-large;
}
span.address {
	font-size: smaller;
}

.loss {
	color: Red;   
}
.win {
	color: Green;
}
.remaining {
	/*padding-top: 25px;*/
	color: #AAA;
}
#currentScoreSpan {
	background: #f0fafa;
	font-size: x-large
	margin: 0 auto;
	border-radius: 10px;
	vertical-align: bottom;
}

div.rainbow { /* https://stackoverflow.com/a/71909116 */
	vertical-align: middle;
  background-image: 
/*    linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet, red); */
	linear-gradient(to right, #a9bcff, #9affff, #18ffb1, #ffffad, #ffd493, #ff9f8c, #ffbdda, #a9bcff); 
  -webkit-background-clip: text;
	-webkit-text-fill-color: transparent;  
  animation: rainbow-animation 512s linear infinite;
}

div.rainbow2 { /* https://stackoverflow.com/a/71909116 */
	vertical-align: middle;
  background-image: 
    linear-gradient(to right, red,orange,green,blue,indigo,violet, red); 
	/*linear-gradient(to right, #a9bcff, #9affff, #18ffb1, #ffffad, #ffd493, #ff9f8c, #ffbdda, #a9bcff); */
  -webkit-background-clip: text;
	-webkit-text-fill-color: transparent;  
  animation: rainbow-animation 512s linear infinite;
}

@keyframes rainbow-animation {
	to {
		background-position: 4500vh;
	}
}

.hidden {
	display: none;
}
.reviewCount {
	font-size: small;
	font-weight: bold;
	color: #333;
	padding-top: 20px;
}

.ratingScore {
	font-size: xxx-large;
	font-weight: bold;
	color: #66f;
	margin: 20px;
	vertical-align: middle;
}

.featured_image {
	padding: 25px;
	display: block;
	margin: 0 auto;
	max-height: 250px;
	max-width: 75%;
}
span.description{
	text-align: center;
	font-size: small;
}

#correctSeq {
	color: Green;
	font-size: xx-large;
}

#incorrectSeq {
	color: Red;
	font-size: xx-large;
	
}

#remainingSeq {
	color: #999999;
	font-size: xx-large;
	
}
#header {
	width: 100%;
	margin: 0 auto;
	/*background-color: #e6dcd2;*/
	height: 150px;
	text-align: center;
	display: flex;
	
}

#board {
	width: 100%;
	
	margin: 0 auto;
	/*padding: 0 25px;*/
	/*background-color: #ccc;*/
	display: flex;
	/*text-align: center;*/
	/*align-items: center;
	/*height: 50vh;*/
	}

#container {
	height: 90vh; /* Fallback for browsers that do not support Custom Properties */
	height: calc(var(--vh, 0.9vh) * 100);
}

#logo {
	/*float: left;*/
	margin: 0 auto;
}

#gamecontrolouter {
	width: 75%;
	margin: 0 auto;

}
#gameControl {

	clear: both;
	margin: 0 auto; /*25px 0 0 -117px;*/
	text-align: center;
	/*background-color: CCCCFF;*/
	width: 75%;
	padding: 10px 0px;
	align-items: center;
	background: #f0fafa;
	margin-bottom: 20px;
/*	border: 3px ridge #AAAA;*/
	border-radius: 20px;

}

#footerMessages {
	padding: 10px 0px;
	margin: 10px 0px;
	/*clear: both;*/
	text-align: center;
	/*float: left;*/
}

#footerHints {
	clear: both;
	text-align: center;
	font-size: small;
	margin-top: 10px;
}

#endMessage {
	/*margin: 25px;*/
	padding: 5px;
	/*border: 1px Solid Red;*/
	
}

.on {
	/*color: green;*/
	border-style: inset;
	background: #DAF7A6; /*rgba(255, 192, 203);*/
}

button {
	/*font-size: 1em;*/
	border-radius: 50%;
	height: 50px;
	width: 50px;
	text-align: center;
	font-size: 1.25em;
	line-height: 0;
	vertical-align: bottom;
}

#progress {
  width:25px;
  margin: 50px 0;
  background: rgba(253,45,77,1);
  background: linear-gradient(0deg, rgba(253,45,77,1) 0%, rgba(252,176,69,1) 50%, rgba(34,193,195,1) 100%);
  border-radius: 25px;
}

#bar {
  width: 25px;
  background-color: blue; /*#4CAF50;*/
  text-align: center;
  background-color: SlateGray;
  height:100%;
}